diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml index 8f519c7..17c50aa 100644 --- a/.github/workflows/general.yml +++ b/.github/workflows/general.yml @@ -3,7 +3,7 @@ name: general on: push: branches: - - master + - '*' tags: - '*.*.*' pull_request: @@ -15,10 +15,10 @@ jobs: # Test test-linux: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 strategy: matrix: - python-version: ['3.7.15', '3.8.16', '3.9.16', '3.10.10', '3.11.2'] + python-version: ['3.7.15', '3.8.16', '3.9.16', '3.10.10', '3.11.2', '3.12.1'] plyvel: ['true', 'false'] steps: - name: Checkout repository @@ -35,8 +35,8 @@ jobs: make install - name: Test software run: make test - - name: Report coverage - uses: codecov/codecov-action@v1 + # - name: Report coverage + # uses: codecov/codecov-action@v1 # Release diff --git a/Makefile b/Makefile index e2c24f7..2dd98ce 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ release: test: pylama $(PACKAGE) - py.test -s --cov dataflows --cov-report term-missing + py.test -vvv -s --cov dataflows --cov-report term-missing version: @echo $(VERSION) diff --git a/setup.py b/setup.py index ea43d3c..66d2e10 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ def read(*paths): 'pylama', 'pylama_quotes', 'pyflakes<2.5', + 'setuptools', ] TESTS_REQUIRE = [ 'mock',