From a63d190c2bac25450e9bcdf8f95c5e2490198faa Mon Sep 17 00:00:00 2001 From: Lukas Winkler Date: Fri, 26 Feb 2021 21:47:28 +0100 Subject: [PATCH] add travis test --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..74131be --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: python +python: + - "3.9" +install: + - git clone https://github.com/hannorein/rebound rebound-src + - pip install mypy matplotlib + - pip install git+https://github.com/Findus23/retype.git@skip-setters +script: + # stub-dir, output dir, src dir + - retype -p rebound -t retyped/rebound rebound-src/rebound + - cd retyped && mypy rebound || true