Skip to content

Commit 3b2ee0d

Browse files
committed
fix(coverage): revert addition of "--timid" flag to coverage
It wasn't a workaround for deis/deis#727.
1 parent 241c696 commit 3b2ee0d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

controller/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ db:
4141
python manage.py syncdb --migrate --noinput
4242

4343
coverage:
44-
coverage run --timid manage.py test --noinput api web
44+
coverage run manage.py test --noinput api web
4545
coverage html
4646

4747
flake8:

docs/contributing/localdev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ that test coverage has improved as a result of your changes and new unit tests.
213213
make: *** [flake8] Error 1
214214
$
215215
$ make coverage
216-
coverage run --timid manage.py test --noinput api web
216+
coverage run manage.py test --noinput api web
217217
WARNING Cannot synchronize with etcd cluster
218218
Creating test database for alias 'default'...
219219
...............................................

docs/contributing/standards.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ensure that everything passes and that code coverage has not declined.
6565
.. code-block:: console
6666
6767
$ make -C controller coverage
68-
coverage run --timid manage.py test --noinput api web
68+
coverage run manage.py test --noinput api web
6969
WARNING Cannot synchronize with etcd cluster
7070
Creating test database for alias 'default'...
7171
...............................................

0 commit comments

Comments
 (0)