Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Test-CI-daily-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Run Notebook Tests
- name: Run Notebooks
run: python -m pytest $(<tests/config_weekly) tests/internal tests/test_*.py
run: python -m pytest -c tests/config_weekly.ini tests/internal tests/test_*.py
env:
# to disable a warning in Jupyter notebooks
JUPYTER_PLATFORM_DIRS: "1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Test-CI-daily-notebooks-algorithms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Run Notebook Tests
- name: Run Notebooks
run: python -m pytest $(<tests/config_weekly) tests/notebooks
run: python -m pytest -c tests/config_weekly.ini tests/notebooks
env:
# to disable a warning in Jupyter notebooks
JUPYTER_PLATFORM_DIRS: "1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Run Notebook Tests
- name: Run Notebooks
run: python -m pytest $(<tests/config_weekly) tests/notebooks
run: python -m pytest -c tests/config_weekly.ini tests/notebooks
env:
# to disable a warning in Jupyter notebooks
JUPYTER_PLATFORM_DIRS: "1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Test-CI-daily-notebooks-other.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Run Notebook Tests
- name: Run Notebooks
run: python -m pytest $(<tests/config_weekly) tests/notebooks/test__community_and_functions.py tests/notebooks/workshops tests/notebooks/classiq_paper
run: python -m pytest -c tests/config_weekly.ini tests/notebooks/test__community_and_functions.py tests/notebooks/workshops tests/notebooks/classiq_paper
env:
# to disable a warning in Jupyter notebooks
JUPYTER_PLATFORM_DIRS: "1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Test-CI-daily-notebooks-tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Run Notebook Tests
- name: Run Notebooks
run: python -m pytest $(<tests/config_weekly) tests/notebooks
run: python -m pytest -c tests/config_weekly.ini tests/notebooks
env:
# to disable a warning in Jupyter notebooks
JUPYTER_PLATFORM_DIRS: "1"
Expand Down
2 changes: 0 additions & 2 deletions tests/config_weekly

This file was deleted.

10 changes: 10 additions & 0 deletions tests/config_weekly.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[pytest]
addopts = --color=yes --log-cli-level=INFO --durations=0 --durations-min=1 --junit-xml=pytest-results/test-results.xml

#
# Common settings
#
python_files = test_*.py

filterwarnings =
error
Loading