Skip to content

Commit

Permalink
MAINT: run fast non regression tests on dev (#1063)
Browse files Browse the repository at this point in the history
* clean working dir and temp folder after testing

* only run on dev from now on
  • Loading branch information
NicolasGensollen authored Jan 31, 2024
1 parent 942b32b commit 678db48
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/test_converters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ jobs:
--junitxml=./test-reports/run_converters_mac.xml \
--disable-warnings \
./nonregression/iotools/test_run_converters.py
- name: Clean
run: |
rm -rf /Volumes/data/tmp
rm -rf /Volumes/data/working_dir_mac
test-converters-Linux:
runs-on:
Expand Down Expand Up @@ -71,3 +75,7 @@ jobs:
--junitxml=./test-reports/run_converters_linux.xml \
--disable-warnings \
./nonregression/iotools/test_run_converters.py
- name: Clean
run: |
rm -rf /mnt/data/ci/tmp
rm -rf /mnt/data/ci/working_dir_linux
4 changes: 2 additions & 2 deletions .github/workflows/test_non_regression_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ name: Fast Non Regression Tests
on:
push:
branches: [dev]
pull_request:
branches: [dev]

permissions:
contents: read
Expand Down Expand Up @@ -48,6 +46,7 @@ jobs:
- name: Clean
run: |
rm -rf /Volumes/data/tmp
rm -rf /Volumes/data/working_dir_mac
test-non-regression-fast-Linux:
runs-on:
Expand Down Expand Up @@ -83,3 +82,4 @@ jobs:
- name: Clean
run: |
rm -rf /mnt/data/ci/tmp
rm -rf /mnt/data/ci/working_dir_linux

0 comments on commit 678db48

Please sign in to comment.