Skip to content

Commit

Permalink
Do not run integration tests with real projects on Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
mknorps committed Dec 21, 2023
1 parent e3f5fc9 commit 92ddf45
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_real_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import json
import logging
import os
import platform
import subprocess
import sys
import tarfile
Expand Down Expand Up @@ -178,6 +179,7 @@ def unpacked_project_dir(self, cache: pytest.Cache) -> Path:
pytest.param(project, experiment, id=experiment.name)
for project in ThirdPartyProject.collect()
for experiment in project.experiments
if not platform.system() == "Windows"
],
)
def test_real_project(request, project, experiment):
Expand Down

0 comments on commit 92ddf45

Please sign in to comment.