Skip to content

Commit

Permalink
first contact
Browse files Browse the repository at this point in the history
  • Loading branch information
trel committed Feb 13, 2024
1 parent 59c77d8 commit ef3e6be
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker-testing/harness-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ services:
retries: 3
start_period: 20s
start_interval: 2s
ports:
- "1247:1247"
depends_on:
- irods-catalog

5 changes: 5 additions & 0 deletions docker-testing/run_the_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

print('the tests have begun')

from irods.session import iRODSSession
with iRODSSession(host='localhost', port=1247, user='rods', password='rods', zone='tempZone') as session:
coll = session.collections.get("/tempZone/home/rods")
print('collection id', coll.id)

print('the tests are complete')

exit(0)

0 comments on commit ef3e6be

Please sign in to comment.