Skip to content

Commit

Permalink
Add python 3.12 to tests (#109)
Browse files Browse the repository at this point in the history
* Add python 3.12 to tests

* Add python 3.12 to tests

* Fix blinker package version for pytest.

* Upgrade setuptools in github actions.

* Remove python 3.7 from tests

* Remove python 3.7 from tests.
  • Loading branch information
everaldorodrigo authored Jun 26, 2024
1 parent 515ae3f commit 7ed5f27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/mygeneset_utilities_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
steps:
- name: Checkout source
uses: actions/checkout@v3
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/user_geneset_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.5.2
Expand Down Expand Up @@ -80,6 +80,10 @@ jobs:
run: pip install selenium-wire
- name: Install Webdriver Manager
run: pip install webdriver-manager
- name: Install Blinker
run: pip install blinker==1.7.0
- name: Install/Upgrade setuptools
run: pip install --upgrade setuptools
- name: Run App Tests
run: pytest test_user_genesets.py
working-directory: src/tests
Expand Down

0 comments on commit 7ed5f27

Please sign in to comment.