Skip to content

Commit dd7ee3e

Browse files
committed
ci: Update CircleCI settings to ensure latest pip version is used
1 parent dda816d commit dd7ee3e

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.circleci/config.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@ jobs:
1212
steps:
1313
- checkout
1414
- run:
15-
name: Display Python & Tox versions
15+
name: Upgrade pip
16+
command: python -m pip install --upgrade pip
17+
- run:
18+
name: Display Python, Pip & Tox versions
1619
command: |
1720
python --version
21+
pip --version
1822
tox --version
1923
- run:
2024
name: Run server tests
@@ -29,6 +33,14 @@ jobs:
2933
command: bash -c "mkdir /dev/shm/mongo && mongod --storageEngine ephemeralForTest --nojournal --dbpath=/dev/shm/mongo --noauth --bind_ip_all"
3034
steps:
3135
- checkout
36+
- run:
37+
name: Upgrade pip
38+
command: python -m pip install --upgrade pip
39+
- run:
40+
name: Display Python & Pip versions
41+
command: |
42+
python --version
43+
pip --version
3244
- run:
3345
name: Install server plugin
3446
command: pip install .[test]

0 commit comments

Comments
 (0)