From 6bb7335bd053969081745dfc69f073d7cccfdc6c Mon Sep 17 00:00:00 2001 From: jvonrick Date: Mon, 20 Nov 2023 13:51:22 +0100 Subject: [PATCH] Update version and add more backward compatibility tests --- .github/workflows/ci_cd.yml | 4 ++-- tox.ini | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 53c9761ff..1a8e63ee0 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -73,9 +73,9 @@ jobs: # if other containers must be tested. run: | docker pull ghcr.io/ansys/pydpf-composites:${{ env.CONTAINER_TAG }} - docker pull ghcr.io/ansys/pydpf-composites:2024r1 + # docker pull ghcr.io/ansys/pydpf-composites:2024r1 docker pull ghcr.io/ansys/pydpf-composites:2024r1_pre0 - docker pull ghcr.io/ansys/pydpf-composites:2023r2 + # docker pull ghcr.io/ansys/pydpf-composites:2023r2 docker pull ghcr.io/ansys/pydpf-composites:2023r2_pre1 - name: "Checkout the project" diff --git a/tox.ini b/tox.ini index 16f8b8833..189e73967 100644 --- a/tox.ini +++ b/tox.ini @@ -32,9 +32,9 @@ setenv = commands = poetry install -E test poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=latest {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {posargs:-vv} - poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r1 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} +# poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r1 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2024r1_pre0 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} - poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2023r2 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} +# poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2023r2 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} poetry run pytest --reruns 1 --license-server={env:LICENSE_SERVER:} --image-tag=2023r2_pre1 {env:PYTEST_MARKERS:} {env:PYTEST_EXTRA_ARGS:} {env:PYTEST_COV_APPEND_ARG:} {posargs:-vv} [testenv:test-minimal]