We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9a12cb commit bdddb44Copy full SHA for bdddb44
1 file changed
pythontests/action.yml
@@ -18,15 +18,20 @@ runs:
18
python-version: '3.12'
19
cache: 'pip'
20
cache-dependency-path: |
21
- setup.py
+ pyproject.toml
22
**/requirements.txt
23
- run: python -m venv venv
24
shell: bash
25
- run: source venv/bin/activate
26
27
- run: pip install wheel pytest
28
29
- - run: pip install -v -r `find . -name requirements.txt`
+ - run: |
30
+ if [ -n "$(find . -name requirements.txt)" ]; then
31
+ pip install -v -r $(find . -name requirements.txt)
32
+ else
33
+ pip install -v --group dev .
34
+ fi
35
36
- run: pip install -v --editable .
37
0 commit comments