We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10cd0da commit 465d9f7Copy full SHA for 465d9f7
tests/test_execute.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
3
import json
4
+import os
5
import pickle
6
import re
7
import subprocess
@@ -634,11 +635,15 @@ def create_file(
634
635
636
637
@pytest.mark.end_to_end()
638
+@pytest.mark.xfail(
639
+ sys.platform == "win32" and os.environ.get("CI"),
640
+ reason="Wrong python interpreter used in Github Actions.",
641
+)
642
def test_execute_tasks_multiple_times_via_api(tmp_path):
643
"""See #625."""
644
source = """
645
import pathlib
- from typing import Annotated
646
+ from typing_extensions import Annotated
647
from pytask import build, task
648
import sys
649
0 commit comments