From 207ed12464474c3595ce6d619aa7b09364787c6a Mon Sep 17 00:00:00 2001 From: Ethan Ho Date: Mon, 18 Dec 2023 16:15:55 -0700 Subject: [PATCH 1/3] Add Python 3.10 and 3.11 to CI --- .github/workflows/development.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 5f3b1f07..9eb21cd9 100644 --- a/.github/workflows/development.yaml +++ b/.github/workflows/development.yaml @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - py_ver: ["3.9"] + py_ver: ["3.9", "3.10", "3.11"] mysql_ver: ["8.0", "5.7"] include: - py_ver: "3.8" From d96a04bb0e044369f48904551847e25a174ca244 Mon Sep 17 00:00:00 2001 From: Ethan Ho Date: Mon, 18 Dec 2023 16:32:30 -0700 Subject: [PATCH 2/3] Test 3.10 and 3.11 with MySQL 8.0 only --- .github/workflows/development.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/development.yaml b/.github/workflows/development.yaml index 9eb21cd9..e9a72f48 100644 --- a/.github/workflows/development.yaml +++ b/.github/workflows/development.yaml @@ -55,9 +55,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - py_ver: ["3.9", "3.10", "3.11"] + py_ver: ["3.9"] mysql_ver: ["8.0", "5.7"] include: + - py_ver: "3.11" + mysql_ver: "8.0" + - py_ver: "3.10" + mysql_ver: "8.0" - py_ver: "3.8" mysql_ver: "5.7" - py_ver: "3.7" From b58e2386d5b56276fc3613a187c4c779b87adf4b Mon Sep 17 00:00:00 2001 From: Ethan Ho Date: Mon, 18 Dec 2023 16:44:14 -0700 Subject: [PATCH 3/3] Remove nosetest commands from compose stack --- LNX-docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/LNX-docker-compose.yml b/LNX-docker-compose.yml index eaf3a48c..cba91dc8 100644 --- a/LNX-docker-compose.yml +++ b/LNX-docker-compose.yml @@ -87,11 +87,9 @@ services: - -c - | set -e - pip install --user nose nose-cov pip install -e . pip list --format=freeze | grep datajoint pytest -sv --cov-report term-missing --cov=datajoint tests - nosetests -vsw tests_old --with-coverage --cover-package=datajoint # ports: # - "8888:8888" user: ${HOST_UID:-1000}:anaconda