We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a3f29 commit f6067fbCopy full SHA for f6067fb
.travis.yml
@@ -12,6 +12,7 @@ env:
12
- DJANGO_VERSION=1.9
13
14
install:
15
+ - npm install
16
- pip install -r requirements.txt
17
- pip install -U Django==$DJANGO_VERSION
18
- pip install codecov
runtests.py
@@ -25,7 +25,7 @@ def flake8_main(args):
25
26
def run_tests_eslint():
27
print('Running: eslint')
28
- command = subprocess.call(['cd rest_framework_docs/static/ && npm install && npm test'], shell=True)
+ command = subprocess.call(['cd rest_framework_docs/static/ && npm test'], shell=True)
29
print("" if command else "Success. eslint passed.")
30
return command
31
0 commit comments