mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -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
|
archivebox version
|
||||||
|
|
||||||
- name: Test built package with pytest
|
- name: Test built package with pytest
|
||||||
|
env:
|
||||||
|
OS: ${{ matrix.os }}
|
||||||
run: |
|
run: |
|
||||||
# TODO: remove this exception for windows once we get tests passing on that platform
|
# 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"
|
echo "Skipping tests on Windows"
|
||||||
else
|
else
|
||||||
python -m pytest -s
|
python -m pytest -s
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue