Skip to content

Commit

Permalink
fix: try creating the .env.test file to fix dotenv test in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bionicles committed Dec 24, 2023
1 parent 6953199 commit aa3be8b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ jobs:
# pip install -r requirements.txt # moved into setup.py
pip install pytest
pip install -e .
- name: Create .env file
run: |
echo "DEBUG_TREE_PLUS=1" > .env.test
echo "DEBUG_TREE_PLUS=1" > tests/dot_dot/nested_dir/.env.test
- name: Run generic tests
run: |
pytest tests/ -k "not test_tree_plus_dotdot" -vv
Expand Down

0 comments on commit aa3be8b

Please sign in to comment.