From d67bbe8a0c12bc011fb24724695c35f9e120dc81 Mon Sep 17 00:00:00 2001
From: Pouria Hadjibagheri
Date: Sun, 23 Apr 2017 10:34:49 +0100
Subject: [PATCH] Update .travis.yml to cover dev.py
---
.travis.yml | 1 +
dev.py | 8 ++++----
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index aaa0f8b..86a7edf 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,6 +54,7 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source venv/bin/activate ; fi
install:
+ - python dev.py -no-container
- pip install -q Django==$DJANGO
- python setup.py install
diff --git a/dev.py b/dev.py
index baac867..b8e5958 100644
--- a/dev.py
+++ b/dev.py
@@ -346,8 +346,8 @@ def main():
action='store_const',
dest='run',
const=run_docker,
- help='Run vagrant development environment '
- '(runs --vagrant if the files don\'t already exist). '
+ help='Run docker development environment '
+ '(runs --docker if the files don\'t already exist). '
'Docker must already be installed on your machine, and '
'Docker Daemon must be up and running.'
)
@@ -357,8 +357,8 @@ def main():
action='store_const',
dest='run',
const=no_container,
- help='Run vagrant development environment (runs --vagrant '
- 'if the files don\'t already exist).'
+ help='Create development files without a container-based '
+ 'development environment (creates "manage.py").'
)
parser.add_argument(