File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -139,8 +139,7 @@ jobs:
139139 mkdir .\data\test\runs
140140
141141 - name : Build oxen rust project
142- run : |
143- cargo build --workspace
142+ run : cargo build --workspace --profile test # use test profile so we don't have to rebuild later
144143
145144 - name : Setup oxen-server user (Linux/macOS)
146145 if : matrix.platform != 'windows'
@@ -206,7 +205,7 @@ jobs:
206205
207206 uv sync --no-install-project
208207 source .venv/bin/activate
209- maturin develop
208+ maturin develop --profile test
210209 pytest -s tests
211210
212211 - name : Run oxen-python tests (Windows)
@@ -219,5 +218,5 @@ jobs:
219218 uv sync --no-install-project
220219 dir .venv
221220 .venv\Scripts\Activate.ps1
222- maturin develop
221+ maturin develop --profile test
223222 pytest -s tests --ignore=tests/test_data_frame.py --ignore=tests/test_embeddings.py --ignore=tests/test_fsspec_backend.py
You can’t perform that action at this time.
0 commit comments