Fix pytest execution for python tests.

pull/2993/head
derekpierre 2022-11-02 12:58:34 -04:00
parent 8126116cb5
commit 4f79744972
1 changed files with 12 additions and 12 deletions

View File

@ -34,40 +34,40 @@ jobs:
run: python -c "import nucypher; print(nucypher.__version__)"
- name: Unit Tests
run: pytest tests/unit
run: python -m pytest tests/unit
- name: Integration Tests
run: pytest tests/integration
run: python -m pytest tests/integration
- name: Agents Tests
run: pytest tests/acceptance/blockchain/agents
run: python -m pytest tests/acceptance/blockchain/agents
- name: Actors Tests
run: pytest tests/acceptance/blockchain/actors
run: python -m pytest tests/acceptance/blockchain/actors
- name: Deployers Tests
run: pytest tests/acceptance/blockchain/deployers
run: python -m pytest tests/acceptance/blockchain/deployers
- name: Interfaces Tests
run: pytest tests/acceptance/blockchain/interfaces
run: python -m pytest tests/acceptance/blockchain/interfaces
- name: Conditions Tests
run: pytest tests/acceptance/blockchain/conditions
run: python -m pytest tests/acceptance/blockchain/conditions
- name: Characters Tests
run: pytest tests/acceptance/characters
run: python -m pytest tests/acceptance/characters
- name: Node Discovery Tests
run: pytest tests/acceptance/learning
run: python -m pytest tests/acceptance/learning
- name: Network Tests
run: pytest tests/acceptance/network
run: python -m pytest tests/acceptance/network
- name: Utility Tests
run: pytest tests/acceptance/utilities
run: python -m pytest tests/acceptance/utilities
- name: Check CLI Entrypoint
run: nucypher --help
- name: CLI Tests
run: pytest tests/acceptance/cli
run: python -m pytest tests/acceptance/cli