Skip to content

Commit

Permalink
MNT #867 tests run with python, not pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Nov 17, 2020
1 parent 3408284 commit 139b6f4
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Unit Tests using PyTest
name: Syntax Checks

on: [push]

Expand Down Expand Up @@ -41,16 +41,17 @@ jobs:
- name: Install dependencies
run: |
$CONDA/bin/conda env update --file environment.yml --name $ENV_NAME
$CONDA/bin/conda install pytest --name $ENV_NAME
# $CONDA/bin/conda install pytest --name $ENV_NAME
$CONDA/bin/conda list -r --name $ENV_NAME
env:
PY_VER: ${{ matrix.python-version }}
ENV_NAME: anaconda-test-env-py-${{ matrix.python-version }}

- name: Run tests with pytest
- name: Run tests
run: |
source $CONDA/bin/activate $ENV_NAME
pytest -vvv ./utils/test_suite.py
# pytest -vvv ./utils/test_suite.py
python ./utils/test_suite.py
env:
PY_VER: ${{ matrix.python-version }}
ENV_NAME: anaconda-test-env-py-${{ matrix.python-version }}
Expand Down

0 comments on commit 139b6f4

Please sign in to comment.