File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -11,18 +11,20 @@ jobs:
1111 shell : /bin/bash --login
1212 working_directory : ~/rocky/python3-trepan
1313 docker :
14- - image : circleci/python:3.10
14+ - image : circleci/python:3.8
1515 steps :
1616 - checkout # checkout source code to working directory
1717 - run :
1818 command : | # use pip to install dependencies. FIXME: can we get rid of sudo?
19- sudo pip install -e git+https://github.com/rocky/python-xdis.git#egg=xdis
20- sudo pip install -e git+https://github.com/rocky/python-filecache.git#egg=pyficache
21- sudo pip install -e .
22- sudo pip install -r requirements-dev.txt
19+ pip install --local -e git+https://github.com/rocky/python-xdis.git#egg=xdis
20+ pip install --local -e git+https://github.com/rocky/pytracer.git#egg=tracer
21+ pip install --local -e git+https://github.com/rocky/python-filecache.git#egg=pyficache
22+ pip install --local -e git+https://github.com/rocky/python-decompile3.git#egg=decompyle3
23+ pip install --local -e .
24+ # pip install --local -r requirements-dev.txt
2325 name : Install dependencies
2426 - run :
25- command : sudo python ./setup.py develop && sudo make test-unit test-functional
27+ command : sudo python ./setup.py develop && make test-unit test-functional
2628 name : Run Tests
2729
2830workflows :
Original file line number Diff line number Diff line change 1- nose
21flake8
32pytest
43# rst2html
You can’t perform that action at this time.
0 commit comments