.drone.yml: Test on Python 3.10
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Alan Orth 2021-10-11 20:08:15 +03:00
parent c95261f522
commit c941a90944
1 changed files with 17 additions and 0 deletions

View File

@ -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