Skip to content

Commit

Permalink
Bump flask from 2.0.2 to 2.3.2 in /contract-tests (#9)
Browse files Browse the repository at this point in the history
* Bump flask from 2.0.2 to 2.3.2 in /contract-tests

Bumps [flask](https://github.com/pallets/flask) from 2.0.2 to 2.3.2.
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](pallets/flask@2.0.2...2.3.2)

---
updated-dependencies:
- dependency-name: flask
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

* Disable 3.7 test

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matthew Keeler <mkeeler@launchdarkly.com>
  • Loading branch information
dependabot[bot] and keelerm84 committed May 4, 2023
1 parent 7336f7a commit 4fb1569
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
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

0 comments on commit 4fb1569

Please sign in to comment.