Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

.travis.yml 295 B

123456789101112131415
  1. language: python
  2. python:
  3. - "2.7"
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. # command to install dependencies
  8. install:
  9. - pip install -r requirements.txt
  10. - pip install coveralls
  11. - pip install .
  12. # command to run tests, e.g. python setup.py test
  13. script:
  14. nosetests --with-coverage --cover-package=neo