From 1cec004cae6b2ae73d265ebba478c8b5cd7766ed Mon Sep 17 00:00:00 2001 From: Sebastien Morais Date: Tue, 21 Nov 2023 16:54:50 +0100 Subject: [PATCH] wip --- .github/workflows/test_pyaedt.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_pyaedt.yml b/.github/workflows/test_pyaedt.yml index 950f3b20b2..7d0918917b 100644 --- a/.github/workflows/test_pyaedt.yml +++ b/.github/workflows/test_pyaedt.yml @@ -76,14 +76,16 @@ jobs: for ($i=0; $i -lt 11; $i++) { Move-Item -Path "src\pyaedt\_unittest\test_${i}_*" -Destination src\pyaedt\excluded_tests\ } + Get-ChildItem -Path "src\pyaedt\_unittest" - name: 'Pyaedt tests' uses: nick-fields/retry@v2 with: max_attempts: 1 retry_on: error - timeout_minutes: 40 + timeout_minutes: 80 command: | .\.venv\Scripts\Activate.ps1 Set-Item -Path env:PYTHONMALLOC -Value "malloc" - pytest --durations=50 -v --cov=src/pyaedt --cov-report=xml --cov-report=html --junitxml=junit/test-results.xml -k "not test_create_pdf and not test_09_plot and not test_16_read_hdm and not test_01_Animate_plt and not test_14_Field_Ploton_cutplanedesignname and not test_14B_Field_Ploton_Vector and not test_15_export_plot" src/pyaedt/_unittest + pytest --durations=50 -v --cov=src/pyaedt --cov-report=xml --cov-report=html --junitxml=junit/test-results.xml -k "not test_create_pdf and not test_09_plot and not test_16_read_hdm and not test_01_Animate_plt and not test_14_Field_Ploton_cutplanedesignname and not test_14B_Field_Ploton_Vector and not test_15_export_plot and not test_09c_import_into_report" src/pyaedt/_unittest +