Skip to content

Commit 421948e

Browse files
fix: path
1 parent fc13e69 commit 421948e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ jobs:
2525
python -m pip install --upgrade pip
2626
pip install -r api-batch-test/requirements.txt
2727
28-
- name: Run test_activities.py
28+
- name: Run tests
2929
run: |
30-
pytest api-batch-test/tests/test_activities.py
30+
pytest
3131
3232
- name: Upload test report artifact
3333
uses: actions/upload-artifact@v4

api-batch-test/tests/test-contract/test_people_contract.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from jsonschema import validate
2-
from tests.schemas.page_schema import PAGE_SCHEMA
3-
from tests.schemas.people_schema import PEOPLE_ITEM_SCHEMA
2+
from src.schemas.page_schema import PAGE_SCHEMA
3+
from src.schemas.people_schema import PEOPLE_ITEM_SCHEMA
44
import pytest
55
from src.api_endpoints import Endpoints
66

0 commit comments

Comments
 (0)