Skip to content

Commit ff20afd

Browse files
committed
update git workflow for the Windows test step to use a virtual environment and install only the essential test dependencies
1 parent 893a0d2 commit ff20afd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build_and_test_tidesdb.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,5 +177,8 @@ jobs:
177177
run: |
178178
export PATH="/mingw64/bin:$PATH"
179179
cd tidesdb-python
180-
pip install -e ".[dev]"
180+
python -m venv venv
181+
source venv/bin/activate
182+
pip install pytest pytest-cov
183+
pip install -e .
181184
pytest -v

0 commit comments

Comments
 (0)