Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 54760e4

Browse files
committed
ci-integration-tests
1 parent 44fe6b0 commit 54760e4

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ jobs:
176176
env:
177177
CADS_API_URL: ${{ secrets.CADS_API_URL }}
178178
run: |
179-
make all-tests COV_REPORT=xml
179+
make ci-integration-tests COV_REPORT=xml
180180
181181
distribution:
182182
runs-on: ubuntu-latest

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ docs-build:
3636
integration-tests:
3737
python -m pytest -vv --cov=. --cov-report=$(COV_REPORT) tests/integration*.py
3838

39+
legacy-tests:
40+
python -m pytest -vv --cov=. --cov-report=$(COV_REPORT) tests/integration_test_50_legacy_api_client.py
41+
3942
doc-tests:
4043
python -m pytest -vv --doctest-glob='*.md' README.md
4144

4245
all-tests: unit-tests integration-tests doc-tests
46+
47+
ci-integration-tests:
48+
unit-tests legacy-tests doc-tests

0 commit comments

Comments
 (0)