Skip to content

Bump flask from 2.0.2 to 2.3.2 in /contract-tests #9

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

Merged
merged 2 commits into from
May 4, 2023
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
30 changes: 19 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workflows:
- test-linux:
name: Python 3.7
docker-image: cimg/python:3.7
skip-contract-tests: true
- test-linux:
name: Python 3.8
docker-image: cimg/python:3.8
Expand All @@ -29,6 +30,10 @@ jobs:
parameters:
docker-image:
type: string
skip-contract-tests:
type: boolean
default: false

docker:
- image: <<parameters.docker-image>>
steps:
Expand All @@ -48,17 +53,20 @@ jobs:
name: lint
command: make lint

- run:
name: build SSE contract test service
command: make build-contract-test-service
- run:
name: start SSE contract test service
command: make start-contract-test-service
background: true
- run:
name: run SSE contract tests
command: make run-contract-tests

- unless:
condition: <<parameters.skip-contract-tests>>
steps:
- run:
name: build SSE contract test service
command: make build-contract-test-service
- run:
name: start SSE contract test service
command: make start-contract-test-service
background: true
- run:
name: run SSE contract tests
command: make run-contract-tests

- store_test_results:
path: test-reports
- store_artifacts:
Expand Down
2 changes: 1 addition & 1 deletion contract-tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Flask==2.0.2
Flask==2.3.2
urllib3>=1.22.0,<2