Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

Commit

Permalink
fix sh syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesturk committed Feb 20, 2017
1 parent 0fa56b4 commit a37aa24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run_tests.sh
@@ -1,7 +1,7 @@
#!/bin/sh

python -c 'import sys; print(sys.version_info[0])' | grep 3 &> /dev/null
if [ $? == 0 ]; then
if [ $? = 0 ]; then
nosetests # don't run Django tests for Py3
else
nosetests && django-admin.py test --settings=billy.tests.django_settings --pythonpath=.
Expand Down

0 comments on commit a37aa24

Please sign in to comment.