Skip to content

Commit 03e9b71

Browse files
Fix minor bug in test CI
1 parent b8a163c commit 03e9b71

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,9 @@ jobs:
109109
$CONDA install -y -n "$CONDA_ENV" `grep -v "^\[" khiops.egg-info/requires.txt`
110110
rm -rf khiops.egg-info
111111
done
112-
- name: Prepare Tests Environment
113-
if: github.ref != 'dev' && github.rev != 'dev-v10' && github.ref != 'main' && ! inputs.run-expensive-tests
112+
- name: Configure Expensive Tests Setting
113+
# Skip expensive tests by default, unless on the `dev`, `dev-v10` or `main` branches
114+
if: github.ref != 'dev' && github.ref != 'dev-v10' && github.ref != 'main' && ! inputs.run-expensive-tests
114115
run: echo "SKIP_EXPENSIVE_TESTS=true" >> "$GITHUB_ENV"
115116
- name: Prepare Integration Tests on remote files
116117
env:

0 commit comments

Comments
 (0)