From 7c4aeed178944de3be49fcae4a90569619808652 Mon Sep 17 00:00:00 2001 From: "J.P" <70083705+stapmoshun@users.noreply.github.com> Date: Sun, 14 Jan 2024 15:28:54 -0500 Subject: [PATCH] gh workflow --- .github/workflows/python-package-conda.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index 7864522..ae67a30 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -44,14 +44,15 @@ jobs: flake8 --exclude deprecated . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Install current Python library + shell: bash run: | - source activate base # Activate the conda environment + conda activate base # Activate the conda environment pip install -e . # Install the current Python library in editable mode - # pip install cloudmesh-vpn - name: Test with pytest + shell: bash run: | - conda install pytest - source activate base & pytest tests -rsx + conda activate base # Activate the conda environment + pytest tests -rsx # build-windows: