Skip to content

Commit 4c9a3e1

Browse files
author
Joey Leingang
committed
add postgres and older flake8 requirement
1 parent 43b868b commit 4c9a3e1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ aliases:
1313
TEST_REPORTS: /tmp/test-reports
1414
steps:
1515
- checkout
16+
- run:
17+
name: Install postgres
18+
command: |
19+
sudo apt-get update && \
20+
sudo apt-get install \
21+
postgresql-9.6
1622
- run:
1723
<<: *dependencies
1824
- run: make test

test_requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
# Requirements needed for running the test suite.
33
astroid==2.0.4
44
coverage==4.5.1
5-
flake8-bugbear==18.8.0
5+
flake8-bugbear==18.8.0;python_version>"3.4"
6+
flake8-bugbear==17.12.0;python_version<"3.5"
67
flake8-commas==2.0.0
78
flake8-comprehensions==1.4.1
89
flake8-import-order==0.18

0 commit comments

Comments
 (0)