Skip to content

Commit 6bd6034

Browse files
authored
Merge pull request #203 from mpsonntag/updateTravis
let's see if appveyor tries to build it after merging
2 parents bf88a3c + 45c72d9 commit 6bd6034

15 files changed

+72
-31
lines changed

.travis.yml

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,42 @@ dist: trusty
33

44
language: python
55

6-
env:
7-
global:
8-
- NIX_BRANCH=master
9-
106
matrix:
117
include:
12-
- python: "2.7"
8+
- os: linux
9+
python: "2.7"
1310
env: COVERALLS=1
14-
- python: "3.4"
15-
- python: "3.5"
11+
- os: linux
12+
python: "3.4"
13+
- os: linux
14+
python: "3.5"
15+
16+
- os: osx
17+
language: generic
18+
env:
19+
- OSXENV=2.7
20+
- os: osx
21+
language: generic
22+
env:
23+
- OSXENV=3.5
24+
25+
before_install:
26+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bash resources/install_osx_virtualenv.sh; fi
1627

1728
install:
1829
- export PYVER=${TRAVIS_PYTHON_VERSION:0:1}
19-
- pip install --upgrade coveralls
30+
- if [ $COVERALLS = 1 ]; then
31+
pip install --upgrade coveralls;
32+
fi;
33+
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
34+
which python;
35+
source venv/bin/activate;
36+
which python;
37+
fi
2038
- pip install lxml enum34 pyyaml
2139

2240
script:
41+
- which python
2342
- python setup.py build
2443
- if [ $COVERALLS = 1 ]; then
2544
coverage${PYVER} run --source=odml setup.py test && coverage${PYVER} report -m;

INSTALL

Lines changed: 0 additions & 19 deletions
This file was deleted.

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
include LICENSE INSTALL
1+
include LICENSE
22
include README.rst
33
include odml.desktop
4-
recursive-include images *

appveyor.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
environment:
2+
matrix:
3+
- PYTHON: "C:\\Python27"
4+
PYVER: "2.7"
5+
- PYTHON: "C:\\Python35"
6+
PYVER: "3.5"
7+
- PYTHON: "C:\\Python27-x64"
8+
PYVER: "2.7"
9+
- PYTHON: "C:\\Python35-x64"
10+
PYVER: "3.5"
11+
12+
build: false
13+
14+
install:
15+
- python -m pip install lxml enum34 pyyaml
16+
17+
test_script:
18+
- python --version
19+
- python setup.py test

images/odMLSectionIconClosed.png

-3.5 KB
Binary file not shown.

images/odMLSectionIconOpen.png

-3.76 KB
Binary file not shown.

images/odml-add-Property.png

-888 Bytes
Binary file not shown.

images/odml-add-Section.png

-1.22 KB
Binary file not shown.

images/odml-add-Value.png

-1.17 KB
Binary file not shown.

images/odml-logo.png

-358 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)