Skip to content

Commit

Permalink
Fixed environment name, added stock_env too
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Sep 13, 2023
1 parent 0d60652 commit 92581fe
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/run_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,20 @@ jobs:
- name: Add conda to system path
run: echo $CONDA/bin >> $GITHUB_PATH

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

- name: Run scripts
- name: Create stock test environment
run: conda env create -f environments/stock.yaml

- name: Run tests in Intel environment
run: |
. $CONDA/etc/profile.d/conda.sh
conda activate intel_env
python run_tests.py
- name: Run tests in stock environment
run: |
. $CONDA/etc/profile.d/conda.sh
conda activate intel_dev
conda activate stock_env
python run_tests.py

0 comments on commit 92581fe

Please sign in to comment.