Skip to content

Commit ec60ede

Browse files
committed
Correct the environment variables in windows.
Signed-off-by: Jay Zhang <jiz@microsoft.com>
1 parent 0fc5f41 commit ec60ede

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/unit_tests_core.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ jobs:
5656
- name: Run unit_test (Windows)
5757
if: runner.os == 'Windows'
5858
run: |
59-
%TF2ONNX_TEST_BACKEND%=onnxruntime
60-
%TF2ONNX_TEST_OPSET%=${{ matrix.opset_version }}
61-
%TF2ONNX_SKIP_TFLITE_TESTS%=False
62-
%TF2ONNX_SKIP_TFJS_TESTS%=True
63-
%TF2ONNX_SKIP_TF_TESTS%=False
59+
set TF2ONNX_TEST_BACKEND=onnxruntime
60+
set TF2ONNX_TEST_OPSET=${{ matrix.opset_version }}
61+
set TF2ONNX_SKIP_TFLITE_TESTS=False
62+
set TF2ONNX_SKIP_TFJS_TESTS=True
63+
set TF2ONNX_SKIP_TF_TESTS=False
6464
python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append

0 commit comments

Comments
 (0)