We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27c10aa commit 4b763d3Copy full SHA for 4b763d3
1 file changed
.github/workflows/test.yml
@@ -68,11 +68,10 @@ jobs:
68
alembic revision --autogenerate
69
alembic -x data=true -x test=true upgrade head
70
71
- - name: Test Context
+ - name: Unit Tests
72
run: |
73
- pytest tests/context/unit --color=yes --showlocals -v
74
- pytest tests/context/integration --color=yes --showlocals -v
+ pytest tests/unit --color=yes --showlocals -v
75
76
- - name: Test Utils
+ - name: Integration Tests
77
78
- pytest tests/utils/unit --color=yes --showlocals -v
+ pytest tests/integration --color=yes --showlocals -v
0 commit comments