From c941a90944ea03ee635d068595b8ab3d75667dbe Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 11 Oct 2021 20:08:15 +0300 Subject: [PATCH] .drone.yml: Test on Python 3.10 --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.drone.yml b/.drone.yml index 471b32f..0bc3ae9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,20 @@ +--- +kind: pipeline +type: docker +name: python310 + +steps: +- name: test + image: python:3.10-slim + commands: + - id + - python -V + - apt update && apt install -y gcc g++ libicu-dev pkg-config + - pip install -r requirements-dev.txt + - pytest + - python setup.py install + - csv-metadata-quality -i data/test.csv -o /tmp/test.csv -e -u --agrovoc-fields dcterms.subject,cg.coverage.country + --- kind: pipeline type: docker