Skip to content

Commit

Permalink
add subsearch check
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Dec 24, 2024
1 parent 2331206 commit f6cbcb1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/check-site.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ def main():
assert r.status_code == 200
assert '95.0% (5.1 Gbp)' in r.text

url = args.host + '/example?filename=Bu5.abund.k51.s100_000.sig.zip'
print('getting:', url)
r = requests.get(url)
assert r.status_code == 200
assert 'subsearch/gtdb-rs220-phylum/' in r.text

print('success!!')


Expand Down

0 comments on commit f6cbcb1

Please sign in to comment.