From af664ad316b23592e9cec429c03d593d8cbd0ed6 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 3 Jun 2022 14:50:21 -0400 Subject: Streamline default test name on Circle --- .circleci/config.yml | 8 ++++---- 1 file 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"] -- cgit v1.2.1