1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-26 07:44:41 +02:00

different bash switch style

This commit is contained in:
Nick Sweeting
2020-12-11 21:41:46 +02:00
parent d92369b62a
commit 35da16f203

View File

@@ -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