mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-26 13:41:02 +02:00
Something weird about pytest, the command vs module invocation?
This commit is contained in:
parent
6b2356317d
commit
ae4dd28ff0
1 changed files with 3 additions and 3 deletions
6
.github/workflows/pull-request.yaml
vendored
6
.github/workflows/pull-request.yaml
vendored
|
|
@ -46,11 +46,11 @@ jobs:
|
|||
run: pip install pytest pytest-cov pytest-asyncio pytest-mock testcontainers
|
||||
|
||||
- name: Unit tests
|
||||
run: pytest tests/unit
|
||||
run: python3 -m pytest tests/unit
|
||||
|
||||
- name: Integration tests (cut the out the long-running tests)
|
||||
run: pytest tests/integration -m 'not slow'
|
||||
run: python3 -m pytest tests/integration -m 'not slow'
|
||||
|
||||
- name: Contract tests
|
||||
run: pytest tests/contract
|
||||
run: python3 -m pytest tests/contract
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue