Skip to content

Commit

Permalink
2024-03-20: adding first tests.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JamieHeather committed Mar 21, 2024
1 parent bea94cd commit 86b0cd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_shared_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ def empty_file(file_name):

def test_downloaded_data_handling():
# Need to have data downloaded to test various functions; arbitrarily use canine and mouse
# dl_cmd = 'stitchrdl -s dog'
# subprocess.call(dl_cmd, shell=True)
# dl_cmd = 'stitchrdl -s mouse'
# subprocess.call(dl_cmd, shell=True)
dl_cmd = 'stitchrdl -s dog'
subprocess.call(dl_cmd, shell=True)
dl_cmd = 'stitchrdl -s mouse'
subprocess.call(dl_cmd, shell=True)
assert 'DOG' in fxn.find_species_covered()
assert 'MOUSE' in fxn.find_species_covered()

Expand Down

0 comments on commit 86b0cd3

Please # to comment.