Skip to content

Commit

Permalink
build: fix test group name (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsstevenson authored Oct 22, 2024
1 parent 8c4022a commit e9b43ef
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
- name: Install DynamoDB dependencies
if: ${{ env.DISEASE_NORM_DB_URL == 'http://localhost:8002' }}
run: python3 -m pip install ".[etl,test]"
run: python3 -m pip install ".[etl,tests]"

- name: Install PG dependencies
if: ${{ env.DISEASE_NORM_DB_URL != 'http://localhost:8002' }}
run: python3 -m pip install ".[pg,etl,test]"
run: python3 -m pip install ".[pg,etl,tests]"

- name: Run tests
run: python3 -m pytest tests/
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ dynamic = ["version"]
[project.optional-dependencies]
pg = ["psycopg[binary]", "requests"]
etl = ["owlready2==0.40", "rdflib", "wags-tails>=0.1.2", "fastobo", "tqdm"]
test = ["pytest>=6.0", "pytest-cov", "httpx"]
tests = ["pytest>=6.0", "pytest-cov", "httpx"]
dev = ["pre-commit>=3.7.1", "ruff==0.5.0", "lxml", "xmlformatter"]
docs = [
"sphinx==6.1.3",
Expand Down

0 comments on commit e9b43ef

Please sign in to comment.