mirror of
https://github.com/echemdata/galvani.git
synced 2025-12-14 01:15:34 +00:00
18 lines
299 B
YAML
18 lines
299 B
YAML
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
|
sudo: false
|
|
language: python
|
|
cache:
|
|
directories:
|
|
- .tox
|
|
- .pytest_cache
|
|
- tests/testdata
|
|
python:
|
|
- "3.6"
|
|
- "3.7"
|
|
- "3.8"
|
|
- "3.9"
|
|
install:
|
|
- pip install tox-travis
|
|
- sh get_testdata.sh
|
|
script: tox
|