We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc13e69 commit 421948eCopy full SHA for 421948e
.github/workflows/pipeline.yml
@@ -25,9 +25,9 @@ jobs:
25
python -m pip install --upgrade pip
26
pip install -r api-batch-test/requirements.txt
27
28
- - name: Run test_activities.py
+ - name: Run tests
29
run: |
30
- pytest api-batch-test/tests/test_activities.py
+ pytest
31
32
- name: Upload test report artifact
33
uses: actions/upload-artifact@v4
api-batch-test/tests/test-contract/test_people_contract.py
@@ -1,6 +1,6 @@
1
from jsonschema import validate
2
-from tests.schemas.page_schema import PAGE_SCHEMA
3
-from tests.schemas.people_schema import PEOPLE_ITEM_SCHEMA
+from src.schemas.page_schema import PAGE_SCHEMA
+from src.schemas.people_schema import PEOPLE_ITEM_SCHEMA
4
import pytest
5
from src.api_endpoints import Endpoints
6
0 commit comments