Skip to content
Snippets Groups Projects
  • Dan Michael O. Heggø's avatar
    b3f2551d
    Simplify running tests · b3f2551d
    Dan Michael O. Heggø authored
    - A single command `python setup.py test` will now install test
      dependencies, make an in-place build and run the tests.
    - The setup script now requires Setuptools. A message will be printed
      if it is not found.
    b3f2551d
    History
    Simplify running tests
    Dan Michael O. Heggø authored
    - A single command `python setup.py test` will now install test
      dependencies, make an in-place build and run the tests.
    - The setup script now requires Setuptools. A message will be printed
      if it is not found.
.travis.yml 177 B
# http://about.travis-ci.org/docs/user/languages/python/

language: python
python:
  - "2.6"
  - "2.7"

install: 
  - python setup.py install

script: 
  - python setup.py test