File tree 9 files changed +11
-11
lines changed
9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 34
34
- os : ubuntu-20.04
35
35
TARGET : ubuntu
36
36
CMD_REQS : >
37
- pip install -r codecov_cli/ requirements.txt && pip install .
37
+ pip install -r requirements.txt && pip install .
38
38
CMD_BUILD : >
39
39
STATICCODECOV_LIB_PATH=$(find build/ -maxdepth 1 -type d -name 'lib.*' -print -quit | xargs -I {} sh -c "find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'") &&
40
40
pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
44
44
- os : windows-latest
45
45
TARGET : windows
46
46
CMD_REQS : >
47
- pip install -r codecov_cli/ requirements.txt && pip install .
47
+ pip install -r requirements.txt && pip install .
48
48
CMD_BUILD : >
49
49
pyinstaller --add-binary "build\lib.win-amd64-cpython-311\staticcodecov_languages.cp311-win_amd64.pyd;." --copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli\main.py &&
50
50
Copy-Item -Path ".\dist\main.exe" -Destination ".\dist\codecovcli_windows.exe"
Original file line number Diff line number Diff line change 27
27
run : |
28
28
python -m build --sdist
29
29
env :
30
- PIP_CONSTRAINT : codecov_cli/ requirements.txt
30
+ PIP_CONSTRAINT : requirements.txt
31
31
- name : Store the distribution packages
32
32
uses : actions/upload-artifact@v4
33
33
with :
Original file line number Diff line number Diff line change 24
24
- name : Install dependencies
25
25
run : |
26
26
python -m pip install --upgrade pip
27
- pip install -r codecov_cli/ requirements.txt
27
+ pip install -r requirements.txt
28
28
python -m pip install -e .
29
29
pip install -r tests/requirements.txt
30
30
- name : Test with pytest
Original file line number Diff line number Diff line change 35
35
- name : Install dependencies
36
36
run : |
37
37
python -m pip install --upgrade pip
38
- pip install -r codecov_cli/ requirements.txt
38
+ pip install -r requirements.txt
39
39
python -m pip install -e .
40
40
- name : Run command_dump
41
41
run : |
92
92
- name : Install dependencies
93
93
run : |
94
94
python -m pip install --upgrade pip
95
- pip install -r codecov_cli/ requirements.txt
95
+ pip install -r requirements.txt
96
96
python -m pip install -e .
97
97
pip install -r tests/requirements.txt
98
98
- name : Test with pytest
@@ -127,7 +127,7 @@ jobs:
127
127
- name : Install dependencies for Dogfooding
128
128
run : |
129
129
python -m pip install --upgrade pip
130
- pip install -r codecov_cli/ requirements.txt
130
+ pip install -r requirements.txt
131
131
python -m pip install -e .
132
132
pip install -r tests/requirements.txt
133
133
- name : Download all test results
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ git submodule update --init
299
299
```
300
300
Then, install dependencies with
301
301
```
302
- pip install -r codecov_cli/ requirements.txt
302
+ pip install -r requirements.txt
303
303
python -m pip install --editable .
304
304
```
305
305
Original file line number Diff line number Diff line change @@ -48,4 +48,4 @@ test-command = "codecovcli --help"
48
48
pure-python = " false"
49
49
50
50
[tool .cibuildwheel .environment ]
51
- PIP_CONSTRAINT = " codecov_cli/ requirements.txt"
51
+ PIP_CONSTRAINT = " requirements.txt"
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
apk add musl-dev build-base
3
- pip install -r codecov_cli/ requirements.txt
3
+ pip install -r requirements.txt
4
4
pip install .
5
5
python setup.py build
6
6
STATICCODECOV_LIB_PATH=$( find build/ -maxdepth 1 -type d -name ' lib.*' -print -quit | xargs -I {} sh -c " find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'" )
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
apt install build-essential
3
- pip install -r codecov_cli/ requirements.txt
3
+ pip install -r requirements.txt
4
4
pip install .
5
5
python setup.py build
6
6
STATICCODECOV_LIB_PATH=$( find build/ -maxdepth 1 -type d -name ' lib.*' -print -quit | xargs -I {} sh -c " find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'" )
You can’t perform that action at this time.
0 commit comments