File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,21 @@ jobs:
28
28
architecture : x64
29
29
- name : Checkout TorchX
30
30
uses : actions/checkout@v2
31
+ - name : Upgrade pip
32
+ run : |
33
+ set -eux
34
+ python -m pip install --upgrade pip
35
+ pip --version
31
36
- name : Install dependencies
32
37
run : |
33
38
set -eux
34
39
pip install pytest pytest-cov
35
40
# use legacy resolver for python 3.11, otherwise pip will timeout trying to resolve deps
36
41
# TODO(kiukchung) long term we should narrowly scope dependency versions
37
42
# see: https://pip.pypa.io/en/latest/topics/dependency-resolution/
38
- pip install --use-deprecated=legacy-resolver -e .[dev]
43
+ pip install --use-deprecated=legacy-resolver -r dev-requirements.txt
44
+ #python setup.py develop
45
+ #pip install --use-deprecated=legacy-resolver -e .[dev]
39
46
- name : Run tests
40
47
run : pytest --cov=./ --cov-report=xml
41
48
- name : Upload coverage to Codecov
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ kubernetes==25.3.0
7
7
flake8==3.9.0
8
8
fsspec==2024.3.1
9
9
s3fs==2024.3.1
10
- google-api-core
11
10
google-cloud-batch==0.17.14
12
11
google-cloud-logging==3.10.0
13
12
google-cloud-runtimeconfig==0.34.0
You can’t perform that action at this time.
0 commit comments