diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 62d97b3e..00000000 --- a/.drone.yml +++ /dev/null @@ -1,42 +0,0 @@ ---- -kind: pipeline -name: python-3-4 - -steps: -- name: test - image: python:3.4 - commands: - - pip install -r requirements.txt - - pip install nose coverage warcat youtube-dl - - pip install . --no-dependencies - - nosetests --with-coverage --cover-package=wpull --cover-branches - ---- -kind: pipeline -name: python-3-5 - -steps: -- name: test - image: python:3.5 - commands: - - pip install -r requirements.txt - - pip install nose coverage warcat youtube-dl - - pip install . --no-dependencies - - nosetests --with-coverage --cover-package=wpull --cover-branches -depends_on: -- python-3-4 - ---- -kind: pipeline -name: python-3-6 - -steps: -- name: test - image: python:3.6 - commands: - - pip install -r requirements.txt - - pip install nose coverage warcat youtube-dl - - pip install . --no-dependencies - - nosetests --with-coverage --cover-package=wpull --cover-branches -depends_on: -- python-3-5 diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 00000000..c2152d4d --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,19 @@ +when: + - event: push + - event: pull_request + - event: manual + +matrix: + PYTHON_VERSION: + - 3.4 + - 3.5 + - 3.6 + +steps: + - name: test + image: python:${PYTHON_VERSION} + commands: + - pip install -r requirements.txt + - pip install nose coverage warcat youtube-dl + - pip install . --no-dependencies + - nosetests --with-coverage --cover-package=wpull --cover-branches \ No newline at end of file