Skip to content

Commit 6dc34cd

Browse files
committed
Reintroduce PYHELIOS_DEV_MODE in workflows for quick test runs
- Add `PYHELIOS_DEV_MODE` environment variable to relevant steps in `test-quick.yml` for development mode testing. - Ensure isolated, quick feedback during essential and smoke tests.
1 parent de8262b commit 6dc34cd

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/test-quick.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,23 @@ jobs:
3030
pip install -e .
3131
3232
- name: Quick smoke test
33+
env:
34+
PYHELIOS_DEV_MODE: 1
3335
run: |
3436
python -c "import pyhelios; print('✓ PyHelios imports successfully')"
3537
python -c "from pyhelios.plugins import print_plugin_status; print_plugin_status()"
3638
3739
- name: Run essential tests only
40+
env:
41+
PYHELIOS_DEV_MODE: 1
3842
run: |
3943
# Run only the most critical tests for quick feedback
4044
pytest tests/test_datatypes.py -v --tb=short
4145
pytest tests/test_cross_platform.py -v -m "cross_platform" --tb=short
4246
4347
- name: Test basic functionality
48+
env:
49+
PYHELIOS_DEV_MODE: 1
4450
run: |
4551
python -c "
4652
# Test basic PyHelios functionality

0 commit comments

Comments
 (0)