Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: general
on:
push:
branches:
- master
- '*'
tags:
- '*.*.*'
pull_request:
Expand All @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ def read(*paths):
'pylama',
'pylama_quotes',
'pyflakes<2.5',
'setuptools',
]
TESTS_REQUIRE = [
'mock',
Expand Down