We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0caaef commit 963d1f7Copy full SHA for 963d1f7
.travis.yml
@@ -14,7 +14,7 @@ install:
14
- pip install -r requirements-test.txt
15
16
before_script:
17
- - openwisp-qa-check --skip-checkmigrations --skip-checkmakemigrations
+ - ./run-qa-checks
18
19
script:
20
- nose2 --with-coverage --coverage=netdiff
README.rst
@@ -395,6 +395,7 @@ Run tests with:
395
.. code-block:: shell
396
397
./runtests.py
398
+ ./run-qa-checks
399
400
Alternatively, you can use the ``nose2`` command (which has a ton of available options):
401
run-qa-checks
@@ -0,0 +1,3 @@
1
+#!/bin/bash
2
+set -e
3
+openwisp-qa-check --skip-checkmigrations --skip-checkmakemigrations
0 commit comments