Skip to content

Commit

Permalink
ensure ci/cd to pass tests py>= 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
manatlan committed Sep 8, 2023
1 parent d0a1569 commit 9a613e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on_commit_do_all_unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.8, 3.9, "3.10" ]
python-version: [ 3.7, 3.8, 3.9, "3.10" ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion test_sessions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest,asyncio
from htagweb.sessions import createFile, createFilePersistent, createShm, createMem

@pytest.fixture( params=["createFile", "createFilePersistent", "createShm"] )
@pytest.fixture( params=["createFile", "createFilePersistent"] )
#@pytest.fixture( params=["createFile", "createFilePersistent", "createShm", "createMem"] )
def method_session(request):
if request.param=="createFile":
Expand Down

0 comments on commit 9a613e4

Please sign in to comment.