Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump test dependencies #710

Merged
merged 1 commit into from
Jul 3, 2024
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 ci_tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -37,23 +37,23 @@ endif
# Targets to build docker file for each python version
.PHONY: test-ci-py38-build
test-ci-py38-build: Dockerfile
docker build --build-arg "PY_TAG=3.8.12-slim-bullseye" --build-arg "ENV_TAG=py38" -t python-sdk:py38 .
docker build --build-arg "PY_TAG=3.8.19-slim-bullseye" --build-arg "ENV_TAG=py38" -t python-sdk:py38 .

.PHONY: test-ci-py39-build
test-ci-py39-build: Dockerfile
docker build --build-arg "PY_TAG=3.9.9-slim-bullseye" --build-arg "ENV_TAG=py39" -t python-sdk:py39 .
docker build --build-arg "PY_TAG=3.9.19-slim-bullseye" --build-arg "ENV_TAG=py39" -t python-sdk:py39 .

.PHONY: test-ci-py310-build
test-ci-py310-build: Dockerfile
docker build --build-arg "PY_TAG=3.10.4-slim-bullseye" --build-arg "ENV_TAG=py310" -t python-sdk:py310 .
docker build --build-arg "PY_TAG=3.10.14-slim-bullseye" --build-arg "ENV_TAG=py310" -t python-sdk:py310 .

.PHONY: test-ci-py311-build
test-ci-py311-build: Dockerfile
docker build --build-arg "PY_TAG=3.11.0-slim-bullseye" --build-arg "ENV_TAG=py311" -t python-sdk:py311 .
docker build --build-arg "PY_TAG=3.11.9-slim-bullseye" --build-arg "ENV_TAG=py311" -t python-sdk:py311 .

.PHONY: test-ci-py312-build
test-ci-py312-build: Dockerfile
docker build --build-arg "PY_TAG=3.12.0-slim-bullseye" --build-arg "ENV_TAG=py312" -t python-sdk:py312 .
docker build --build-arg "PY_TAG=3.12.4-slim-bullseye" --build-arg "ENV_TAG=py312" -t python-sdk:py312 .

# test-ci target triggers unit tests for each requested environment
.PHONY: test-ci
Expand Down
4 changes: 2 additions & 2 deletions gooddata-dbt/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest~=8.0.0
pytest-cov~=4.1.0
pytest~=8.2.2
pytest-cov~=5.0.0
4 changes: 2 additions & 2 deletions gooddata-fdw/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest~=8.0.0
pytest-cov~=4.1.0
pytest~=8.2.2
pytest-cov~=5.0.0
vcrpy~=6.0.1
# TODO - Bump the version together with bumping the version of openapi generator
urllib3==1.26.9
Expand Down
4 changes: 2 additions & 2 deletions gooddata-pandas/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pytest~=8.0.0
pytest-cov~=4.1.0
pytest~=8.2.2
pytest-cov~=5.0.0
vcrpy~=6.0.1
# TODO - Bump the version together with bumping the version of openapi generator
urllib3==1.26.9
Expand Down
6 changes: 3 additions & 3 deletions gooddata-sdk/test-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pytest~=8.0.0
pytest-cov~=4.1.0
pytest~=8.2.2
pytest-cov~=5.0.0
pytest-snapshot==0.9.0
pytest-order~=1.2.0
pytest-order~=1.2.1
vcrpy~=6.0.1
# TODO - Bump the version together with bumping the version of openapi generator
urllib3==1.26.9
Expand Down
Loading