From 042aeda35efe751b58401276ffd44ed08c10a032 Mon Sep 17 00:00:00 2001 From: xrotwang Date: Mon, 8 Apr 2019 09:30:39 +0200 Subject: [PATCH] enable travis --- .gitignore | 1 - .travis.yml | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.gitignore b/.gitignore index d117034..e55e9f5 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ work/* __pycache__/ *.py[cod] -.* *$py.class # C extensions diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1bcf843 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: python +python: "3.6" +cache: pip +before_cache: rm -f $HOME/.cache/pip/log/debug.log +install: pip install pytest-cldf +script: pytest --cldf-metadata=cldf/cldf-metadata.json test.py