Skip to content

Commit 3e8646d

Browse files
committed
CircleCI woes
1 parent a1c96b9 commit 3e8646d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.circleci/config.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff 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

2830
workflows:

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
nose
21
flake8
32
pytest
43
# rst2html

0 commit comments

Comments
 (0)