Skip to content
This repository has been archived by the owner on Mar 22, 2021. It is now read-only.

Commit

Permalink
.travis.yml: Update for simpler unittesting
Browse files Browse the repository at this point in the history
Because the interface for testing and installing did once more got closer to
the standard, there is already a payoff in the travis-ci configuration, were
now less lines of code are needed.

In the new configuration the setuptools standard interface is used for
installation as well as testing. The only requirements necessary for
installation left are python2.7-dev and libssh2-1-dev, which are C-header
dependencies needed for pylibssh2 to build. As far as I see there is not much
we can do about those requirements for now.

See Issue #34.

Signed-off-by: Erik Bernoth <erik.bernoth@gmail.com>
Acked-by: Eik Binschek <binschek@dresearch-fe.de>
Acked-by: Johannes Kroop <kroop@dresearch-fe.de>
  • Loading branch information
erikbgithub committed May 21, 2013
1 parent d5d7bf9 commit 5ce66eb
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,11 @@ python:
- "2.7"

install:
- "python setup.py sdist"
- "pip install dist/monk_tf-0.1.1.tar.gz"
- "pip install -r test-env.txt"
- "python setup.py develop"

script:
- "python test/test_all.py"
- "python setup.py nosetests"

before_install:
- "sudo apt-get install python2.7 python2.7-dev libssh2-1 libssh2-1-dev"
- "sudo apt-get install python-pip"
- "sudo apt-get install python2.7-dev libssh2-1-dev"

0 comments on commit 5ce66eb

Please sign in to comment.