diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b00c3c9..7cda564 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,8 +27,11 @@ jobs: run: | python -m pip install --upgrade pip setuptools pip install -r requirements.txt - - name: Tests + pip install -e . + - name: Lint run: | python setup.py check --restructuredtext flake8 - python setup.py test + - name: Tests + run: | + python -m pytest -v diff --git a/requirements.txt b/requirements.txt index 34f7126..75393d9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ flake8==7.1.0 +pytest==8.3.2