Skip to content

Commit 3389891

Browse files
committed
github: Fix install-opts evaluation
1 parent 51549cc commit 3389891

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# incomplete JUnit XML results.
1717
fail-fast: false
1818
env:
19-
install-opts: ${{ startsWith(matrix.python-version, 'pypy') && '' || '--extras grpc' }}
19+
install-opts: ${{ !startsWith(matrix.python-version, 'pypy') && '--extras grpc' || '' }}
2020
pytest-opts: ${{ startsWith(matrix.python-version, 'pypy') && '-k "not grpc"' || '' }}
2121
steps:
2222
- name: Check out repo

0 commit comments

Comments
 (0)