]> git.parisson.com Git - timeside-diadems.git/commitdiff
Install Coverage through setup.py test_requires
authorThomas Fillon <thomas@parisson.com>
Tue, 22 Apr 2014 07:02:18 +0000 (09:02 +0200)
committerThomas Fillon <thomas@parisson.com>
Tue, 22 Apr 2014 07:02:18 +0000 (09:02 +0200)
.travis.yml
setup.py

index 22fa718dfda105789ddd90eddeeb6761e7900748..1b1f691684d0113df8611ad38130114376f3e1c8 100644 (file)
@@ -1,16 +1,14 @@
 language: python
 python:
-#  - "2.6"
   - "2.7"
 virtualenv:
   system_site_packages: true
 
-
 # command to prepare the system to install prerequisites or dependencies
 before_install:
- - sudo apt-get install -qq python-numpy python-scipy python-matplotlib
  - sudo add-apt-repository -y ppa:donk/gstreamer
  - sudo apt-get -qq update
+ - sudo apt-get install -qq python-numpy python-scipy python-matplotlib
  - sudo apt-get install -qq libhdf5-serial-dev python-h5py
  - sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
  - sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
index cde749b8a5506041b20eb85ee4154804d6d03887..a72a71c2232bbc1ce2950731f7181959ffa5c4b5 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -61,6 +61,6 @@ setup(
   include_package_data = True,
   zip_safe = False,
   scripts=['scripts/timeside-waveforms', 'scripts/timeside-launch'],
-  tests_require=['pytest', 'coveralls'],
+  tests_require=['pytest', 'coverage', 'coveralls'],
   cmdclass = {'test': PyTest},
     )