Skip to content

Commit

Permalink
Fix data generation test, remove 3.7 testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nik committed Mar 5, 2024
1 parent f314f17 commit 3cca140
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- 3.7
- 3.9

steps:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_interface/test_data_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def test_generate_url():
"""

def url_validator(url):
assert url.find("https://") == 0
assert url.startswith("https://") or url.startswith("http://")

# TODO need to add other validators
m = {
Expand Down

0 comments on commit 3cca140

Please sign in to comment.