Skip to content

Commit

Permalink
Skip real project tests if run on Windows
Browse files Browse the repository at this point in the history
This issue originates from the way we run real project tests. I included more details in the PR description.
  • Loading branch information
mknorps committed Dec 21, 2023
1 parent 294a473 commit 03fcd44
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 @@ -177,6 +178,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 03fcd44

Please sign in to comment.