diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 12bdb27..e106393 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -16,7 +16,11 @@ jobs: - run: | conda info conda list - - run: conda create -n myenv python=3.9 - - run: conda activate myenv + - name: Create new conda environment + - run: conda create -n cpacs python=3.9 + - name: Activate new conda environment + - run: conda activate cpacs + - name: Install python modules - run: conda install pytest lxml tixi3 -c dlr-sc + - name: Run pytest - run: pytest