From cc94e7bfeee20724adfda3209cf6e022cdaf6784 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 15 Mar 2016 19:18:16 +0100 Subject: [PATCH] Move ci_install.py to subdir --- .appveyor.yml | 2 +- .travis.yml | 2 +- scripts/dev/{ci_install.py => ci/install.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename scripts/dev/{ci_install.py => ci/install.py} (100%) diff --git a/.appveyor.yml b/.appveyor.yml index e380db569..b85b64285 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -11,7 +11,7 @@ environment: - TESTENV: pylint install: - - C:\Python27\python -u scripts\dev\ci_install.py + - C:\Python27\python -u scripts\dev\ci\install.py test_script: - C:\Python34\Scripts\tox -e %TESTENV% diff --git a/.travis.yml b/.travis.yml index dcf3b826e..085b1b4ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,7 @@ cache: - $HOME/build/The-Compiler/qutebrowser/.cache install: - - python scripts/dev/ci_install.py + - python scripts/dev/ci/install.py script: - tox -e $TESTENV diff --git a/scripts/dev/ci_install.py b/scripts/dev/ci/install.py similarity index 100% rename from scripts/dev/ci_install.py rename to scripts/dev/ci/install.py