aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml33
1 files changed, 0 insertions, 33 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
deleted file mode 100644
index 8cbf5df..0000000
--- a/.gitlab-ci.yml
+++ /dev/null
@@ -1,33 +0,0 @@
-image: debian:sid
-
-before_script:
-- apt-get update -y
-- apt-get install -y python3-pip jython virtualenv
-
-test_core:
- script:
- - virtualenv -p python3 venv
- - source venv/bin/activate
- - python --version
- - pip install nose
- - export YTDL_TEST_SET=core
- - export JYTHON=true;
- - bash ./devscripts/run_tests.sh || true
-
-test_download:
- script:
- - virtualenv -p python3 venv
- - source venv/bin/activate
- - python --version
- - pip install nose
- - export YTDL_TEST_SET=download
- - export JYTHON=true;
- - bash ./devscripts/run_tests.sh || true
-
-test_flake8:
- script:
- - virtualenv -p python3 venv
- - source venv/bin/activate
- - python --version
- - pip install flake8
- - flake8 .