From d67640b967b66e70b63a089dac47f7e072ac9fa7 Mon Sep 17 00:00:00 2001 From: PhiSpel <62760840+PhiSpel@users.noreply.github.com> Date: Mon, 26 Aug 2024 14:45:25 +0200 Subject: [PATCH] Update CI.yml --- .github/workflows/CI.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1fc814e8..6678705d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -52,10 +52,12 @@ jobs: - name: Test setuptools import shell: bash {0} run: | + conda activate test python -c "import os; print(os.environ); import numpy as np; from setuptools import setup" - name: Install package shell: bash {0} run: | + conda activate test python setup.py install - name: Unit tests with pytest shell: bash {0}