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 43b868b commit 4c9a3e1Copy full SHA for 4c9a3e1
.circleci/config.yml
@@ -13,6 +13,12 @@ aliases:
13
TEST_REPORTS: /tmp/test-reports
14
steps:
15
- checkout
16
+ - run:
17
+ name: Install postgres
18
+ command: |
19
+ sudo apt-get update && \
20
+ sudo apt-get install \
21
+ postgresql-9.6
22
- run:
23
<<: *dependencies
24
- run: make test
test_requirements.txt
@@ -2,7 +2,8 @@
2
# Requirements needed for running the test suite.
3
astroid==2.0.4
4
coverage==4.5.1
5
-flake8-bugbear==18.8.0
+flake8-bugbear==18.8.0;python_version>"3.4"
6
+flake8-bugbear==17.12.0;python_version<"3.5"
7
flake8-commas==2.0.0
8
flake8-comprehensions==1.4.1
9
flake8-import-order==0.18
0 commit comments