Skip to content

Commit 92581fe

Browse files
Fixed environment name, added stock_env too
1 parent 0d60652 commit 92581fe

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/run_tests.yaml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,20 @@ jobs:
3030
- name: Add conda to system path
3131
run: echo $CONDA/bin >> $GITHUB_PATH
3232

33-
- name: Create test environment
33+
- name: Create Intel test environment
3434
run: conda env create -f environments/intel.yaml
3535

36-
- name: Run scripts
36+
- 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
3746
run: |
3847
. $CONDA/etc/profile.d/conda.sh
39-
conda activate intel_dev
48+
conda activate stock_env
4049
python run_tests.py

0 commit comments

Comments
 (0)