diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2022-06-03 15:23:14 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2022-06-03 15:23:14 -0400 |
commit | 2ae1ae85eb06bb6bf03e162e1b9441c18d738cc5 (patch) | |
tree | d017742a0a353a0a4c19dadd747585316ff6a40a /.circleci/config.yml | |
parent | eccdeeb58362a9cad78b94857ee6d258e1e2c893 (diff) | |
parent | c42be15d86e919cebfe4a585d1db97fcaafdbe59 (diff) |
Merge branch '2.9' into 2.10
Diffstat (limited to '.circleci/config.yml')
-rw-r--r-- | .circleci/config.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 6b622057..86f3d23d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -53,7 +53,7 @@ workflows: name: Style check # Main test run, w/ coverage, and latest-supported cryptography - orb/coverage: - name: Test 3.6 (w/ coverage, latest crypto) + name: Test # Non-coverage runs w/ other crypto versions. # (Phrased as 2-dimensional matrix but 3.6 only for now to save credits) - orb/test: @@ -75,12 +75,12 @@ workflows: - sdist-test-suite: name: Test within sdist requires: - - "Test 3.6 (w/ coverage, latest crypto)" + - "Test" - "Release test" # Test other interpreters if main passed - orb/test: name: Test << matrix.version >> - requires: ["Test 3.6 (w/ coverage, latest crypto)"] + requires: ["Test"] matrix: parameters: version: ["3.7", "3.8", "3.9"] @@ -88,4 +88,4 @@ workflows: # all those credits if the main tests would also fail...) - orb/docs: name: "Docs" - requires: ["Test 3.6 (w/ coverage, latest crypto)"] + requires: ["Test"] |