From ca3e5c1f2c321d8c53d909a90f753d92667c2a76 Mon Sep 17 00:00:00 2001 From: Michael Mans Date: Fri, 23 Dec 2016 09:40:12 +0100 Subject: [PATCH 1/4] added testing ci --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..44cc665a8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - 3.4 + +install: + - pip install pyxb + - pip install -e . + + +script: + py.test From 5bcbe4f1540e7653b60542777b4e95a30971945e Mon Sep 17 00:00:00 2001 From: Michael Mans Date: Fri, 23 Dec 2016 09:44:00 +0100 Subject: [PATCH 2/4] changes --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 44cc665a8..4cb3c73f3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: install: - pip install pyxb + - pip install scipy - pip install -e . From 2a6723599bfdd229f27d0abb49dd5801ac307fab Mon Sep 17 00:00:00 2001 From: Michael Mans Date: Fri, 23 Dec 2016 09:47:40 +0100 Subject: [PATCH 3/4] Update .travis.yml --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 4cb3c73f3..be4ef6bbe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,9 @@ python: - 3.4 install: + - pip install --upgrade pip setuptools wheel + - pip install --only-binary=numpy,scipy numpy scipy - pip install pyxb - - pip install scipy - pip install -e . From bdae4278fbe0f8a47b516839e5fd41dd6bbe3a90 Mon Sep 17 00:00:00 2001 From: Michael Mans Date: Fri, 23 Dec 2016 09:51:46 +0100 Subject: [PATCH 4/4] Update .travis.yml --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index be4ef6bbe..71d5eb832 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,9 @@ language: python python: + - 2.7 - 3.4 + - 3.5 install: - pip install --upgrade pip setuptools wheel