summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2022-06-03 14:50:21 -0400
committerJeff Forcier <jeff@bitprophet.org>2022-06-03 14:50:21 -0400
commitaf664ad316b23592e9cec429c03d593d8cbd0ed6 (patch)
tree130f8f09b32827b1c24b25a85ebd7c2ca51ac563
parent58b56875e77be6c2b6b65bbec7300a16c6fd5573 (diff)
downloadparamiko-af664ad316b23592e9cec429c03d593d8cbd0ed6.tar.gz
Streamline default test name on Circle
-rw-r--r--.circleci/config.yml8
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"]