From 79412c6c35ec6c685dcb1e14e9714e9f077d79af Mon Sep 17 00:00:00 2001 From: "Ronald I." <14822065+rilma@users.noreply.github.com> Date: Sat, 28 Oct 2023 10:52:29 +0000 Subject: [PATCH] running in virtual env --- .github/workflows/ci.yaml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 41efa78..0b6bf5f 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,16 +20,11 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python_version }} - # - name: Explore - # run: | - # which gfortran - # lsb_release --all - name: Install dependencies run: | - # make install python -m venv .venv .venv/bin/pip install coveralls numpy .venv/bin/pip install -e . - # - name: Run code test in Python programs - # run: | - # make test \ No newline at end of file + - name: Run code test in Python programs + run: | + .venv/bin/coverage run --source=. --module unittest discover --start-directory tests --verbose \ No newline at end of file