Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/run_xpu_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,11 @@
# ==============================================================================

# coding: utf-8
import argparse
import os

os.environ["SCIPY_ARRAY_API"] = "1"
import argparse

import pytest

if __name__ == "__main__":
Expand Down Expand Up @@ -83,8 +85,6 @@
if args.json_report_file is not None:
pytest_params += ["--json-report", f"--json-report-file={args.json_report_file}"]

os.environ["SCIPY_ARRAY_API"] = "1"

if not args.no_intel_optimized:
from sklearnex import patch_sklearn

Expand Down
Loading