From 7b816bed003464040f728705f62fd0b184b5e237 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 26 Jun 2021 17:09:05 -0700 Subject: [PATCH] make tests slightly more readable in PR --- .github/workflows/testing.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index 73734590..bef8d2bd 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -27,7 +27,7 @@ jobs: matrix: python-version: [ 3.7, 3.8, 3.9 ] os: [ ubuntu-latest, macos-latest, windows-latest ] - has_plugins: [true, false] + has_plugins: [ 'no plugins', 'plugins' ] steps: - uses: actions/checkout@v2 @@ -52,7 +52,7 @@ jobs: # this is temporary until we implement a 'given' step # to conditionally install plugins during bdd tests - name: Install plugins - if: ${{ matrix.has_plugins }} + if: ${{ matrix.has_plugins == 'plugins' }} run: poetry run pip install tests/external_plugins_src - name: Code formatting (Black)