From 847ff1e79a7621318c173d45f63c067bc606ed20 Mon Sep 17 00:00:00 2001 From: MarAlder <43143741+MarAlder@users.noreply.github.com> Date: Fri, 4 Aug 2023 11:07:39 +0200 Subject: [PATCH] Update run_tests.yml --- .github/workflows/run_tests.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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