Skip to content

Commit f698186

Browse files
Update CircleCI config
1 parent 98baecc commit f698186

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.circleci/config.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ jobs:
33
build:
44
working_directory: ~/django-static-precompiler
55
docker:
6-
- image: andreyfedoseev/django-static-precompiler
6+
- image: andreyfedoseev/django-static-precompiler:18.04
77
steps:
8-
- run: apt-get update && apt-get install -y python2.7-dev python3.5-dev python-pip sqlite3
8+
- run: apt-get update && apt-get install -y python3-dev python3-pip sqlite3
99
- checkout
10-
- run: pip install --upgrade pip
11-
- run: pip install -r requirements-ci.txt
12-
- run: pip install -e .[libsass]
10+
- run: pip3 install --upgrade pip
11+
- run: pip3 install -r requirements-ci.txt
12+
- run: pip3 install -e .[libsass]
1313
- run: flake8
14+
- run: black --check ./static_precompiler
15+
- run: isort --check ./static_precompiler
1416
- run: rm -f coverage.xml
1517
- run: tox
1618
- run: codecov

0 commit comments

Comments
 (0)