Skip to content

Commit

Permalink
Disable Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 27, 2024
1 parent 06e1c83 commit 9143414
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,8 @@ jobs:
run: |
SOURCE_DIR=$( cygpath "${{ github.workspace }}" )
pip install -r "${SOURCE_DIR}/test/spix/requirements.txt"
docker compose -f "${{ github.workspace }}/test/postgis_docker/docker-compose.yaml" up -d
cd "${{ env.CMAKE_BUILD_DIR }}"
ctest --output-on-failure -C ${{ env.BUILD_TYPE }} -E qmltest
docker compose -f "${{ github.workspace }}/test/postgis_docker/docker-compose.yaml" down
- name: Package
id: package
Expand Down
3 changes: 2 additions & 1 deletion test/spix/smoke_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ def test_svg(app, screenshot_path, screenshot_check, extra, process_alive):


@pytest.mark.skipif(
platform.system() == "Darwin", reason="PostGIS test requires docker"
platform.system() != "Linux",
reason="PostGIS test requires a docker linux container",
)
@pytest.mark.project_file("test_postgis_ssl.qgz")
def test_postgis_ssl(app, screenshot_path, screenshot_check, extra, process_alive):
Expand Down

0 comments on commit 9143414

Please sign in to comment.