mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-12 22:25:44 -04:00
different bash switch style
This commit is contained in:
parent
d92369b62a
commit
35da16f203
1 changed files with 3 additions and 1 deletions
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -87,9 +87,11 @@ jobs:
|
|||
archivebox version
|
||||
|
||||
- name: Test built package with pytest
|
||||
env:
|
||||
OS: ${{ matrix.os }}
|
||||
run: |
|
||||
# TODO: remove this exception for windows once we get tests passing on that platform
|
||||
if [[ ${{ matrix.os }} == "windows-latest" ]]; then
|
||||
if [[ "$OS" == "windows-latest" ]]; then
|
||||
echo "Skipping tests on Windows"
|
||||
else
|
||||
python -m pytest -s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue