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 0fc5f41 commit ec60edeCopy full SHA for ec60ede
.github/workflows/unit_tests_core.yml
@@ -56,9 +56,9 @@ jobs:
56
- name: Run unit_test (Windows)
57
if: runner.os == 'Windows'
58
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
+ set TF2ONNX_TEST_BACKEND=onnxruntime
+ set TF2ONNX_TEST_OPSET=${{ matrix.opset_version }}
+ set TF2ONNX_SKIP_TFLITE_TESTS=False
+ set TF2ONNX_SKIP_TFJS_TESTS=True
+ set TF2ONNX_SKIP_TF_TESTS=False
64
python -m pytest --cov=tf2onnx --cov-report=term --disable-pytest-warnings -r s tests --cov-append
0 commit comments