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 e1ac325 commit 1086d08Copy full SHA for 1086d08
.circleci/config.yml
@@ -2,11 +2,14 @@ version: 2.0
2
3
build_and_test: &build_and_test_steps
4
- checkout
5
+ - run: pip install pipx || true
6
+ - run: pip install --user pipx || true
7
+ - run: sudo pip install pipx || true
8
- run: pip --version || true
9
- run: pip3 --version || true
10
- run: python --version || true
11
- run: python3 --version || true
- - run: sudo python -m pip install --upgrade pip
12
+ - run: sudo pip install --upgrade pip || true
13
- run: sudo pip install pytest -r requirements.txt
14
- run: pip install --user .
15
- run: python --version ; pip --version ; pwd ; ls -l
0 commit comments