|
80 | 80 | uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
81 | 81 | - name: Test importing Flax |
82 | 82 | run: | |
83 | | - uv run python -c "import flax" |
| 83 | + uv run --no-sync python -c "import flax" |
84 | 84 |
|
85 | 85 | tests: |
86 | 86 | name: Run Tests |
@@ -127,20 +127,20 @@ jobs: |
127 | 127 | uv pip install -U git+https://github.com/google-deepmind/dm-haiku.git |
128 | 128 | # temporary: install jax nightly |
129 | 129 | uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
130 | | - uv run tests/run_all_tests.sh --only-doctest |
| 130 | + uv run --no-sync tests/run_all_tests.sh --only-doctest |
131 | 131 | elif [[ "${{ matrix.test-type }}" == "pytest" ]]; then |
132 | 132 | uv pip install -U tensorflow-datasets |
133 | 133 | # temporary: install jax nightly |
134 | 134 | uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
135 | | - uv run tests/run_all_tests.sh --only-pytest |
| 135 | + uv run --no-sync tests/run_all_tests.sh --only-pytest |
136 | 136 | elif [[ "${{ matrix.test-type }}" == "pytype" ]]; then |
137 | | - # temporary: install jax nightly |
| 137 | + # temporary: install jax nightly |
138 | 138 | uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
139 | | - uv run tests/run_all_tests.sh --only-pytype |
| 139 | + uv run --no-sync tests/run_all_tests.sh --only-pytype |
140 | 140 | elif [[ "${{ matrix.test-type }}" == "mypy" ]]; then |
141 | 141 | # temporary: install jax nightly |
142 | 142 | uv pip install -U --pre jax jaxlib -i https://us-python.pkg.dev/ml-oss-artifacts-published/jax/simple/ |
143 | | - uv run tests/run_all_tests.sh --only-mypy |
| 143 | + uv run --no-sync tests/run_all_tests.sh --only-mypy |
144 | 144 | else |
145 | 145 | echo "Unknown test type: ${{ matrix.test-type }}" |
146 | 146 | exit 1 |
|
0 commit comments