We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d60652 commit 92581feCopy full SHA for 92581fe
.github/workflows/run_tests.yaml
@@ -30,11 +30,20 @@ jobs:
30
- name: Add conda to system path
31
run: echo $CONDA/bin >> $GITHUB_PATH
32
33
- - name: Create test environment
+ - name: Create Intel test environment
34
run: conda env create -f environments/intel.yaml
35
36
- - name: Run scripts
+ - name: Create stock test environment
37
+ run: conda env create -f environments/stock.yaml
38
+
39
+ - name: Run tests in Intel environment
40
+ run: |
41
+ . $CONDA/etc/profile.d/conda.sh
42
+ conda activate intel_env
43
+ python run_tests.py
44
45
+ - name: Run tests in stock environment
46
run: |
47
. $CONDA/etc/profile.d/conda.sh
- conda activate intel_dev
48
+ conda activate stock_env
49
python run_tests.py
0 commit comments