We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2170b6b commit 8da18a8Copy full SHA for 8da18a8
.circleci/config.yml
@@ -28,14 +28,14 @@ jobs:
28
- v2-dependencies-
29
30
- run:
31
- name: install dependencies and editable version
+ name: install dependencies and version
32
command: |
33
python3 -m venv venv
34
. venv/bin/activate
35
pip install --upgrade pip setuptools wheel
36
pip install -r requirements.txt
37
pip install -r requirements-dev.txt
38
- pip install -e .
+ pip install .
39
40
41
name: check types
.travis.yml
@@ -10,7 +10,7 @@ install:
10
- pip install --upgrade -r requirements-dev.txt
11
- pip install --upgrade -r requirements.txt
12
- pip freeze
13
- - pip install -e .
+ - pip install .
14
script:
15
- pytest -v --maxfail=2 bookstore/tests
16
after_success:
0 commit comments