mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-18 20:18:32 +02:00
make tests slightly more readable in PR
This commit is contained in:
parent
3f3ce08754
commit
7b816bed00
1 changed files with 2 additions and 2 deletions
4
.github/workflows/testing.yaml
vendored
4
.github/workflows/testing.yaml
vendored
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue