Skip to content

Commit

Permalink
[CI] Remove duplicated verbose flag in test pipelines (#598)
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasGensollen authored May 30, 2024
1 parent 52d7561 commit 39d22fd
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_cli_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_generate_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_interpret.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_interpret_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_predict.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_predict_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_prepare_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_prepare_data_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_quality_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_quality_check_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_random_search.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_random_search_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_resume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_resume_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_train.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_train_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_transfer_learning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_transfer_learning_report.xml \
--disable-warnings \
--verbose \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_tsvtools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
conda activate "${{ github.workspace }}"/env
make install
cd tests
poetry run pytest --verbose \
poetry run pytest \
--junitxml=./test-reports/test_tsvtools_report.xml \
--disable-warnings \
--verbose \
Expand Down

0 comments on commit 39d22fd

Please sign in to comment.