From 76257e3abe6f506ebc4b91ce80f9e216050512d2 Mon Sep 17 00:00:00 2001 From: Digital <34419970+DigitalDwagon@users.noreply.github.com> Date: Sat, 7 Jun 2025 23:20:19 -0400 Subject: [PATCH] Replace Drone CI with Woodpecker CI --- .drone.yml | 42 ------------------------------------------ .woodpecker/test.yml | 19 +++++++++++++++++++ 2 files changed, 19 insertions(+), 42 deletions(-) delete mode 100644 .drone.yml create mode 100644 .woodpecker/test.yml 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