You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 522 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
12345678910111213141516171819202122232425262728
  1. language: python
  2. python:
  3. - '3.6.5'
  4. - '3.5'
  5. - '3.6'
  6. - '3.7'
  7. - '3.8'
  8. before_install:
  9. - python --version
  10. - pip install -U pip
  11. - pip install -U pytest
  12. - pip install codecov
  13. - pip install coverage
  14. - pip install pytest-cov
  15. install:
  16. - if [ $TRAVIS_PYTHON_VERSION == 3.8 ];
  17. then pip install -r requirements.txt;
  18. else pip install -r requirements.txt;
  19. fi
  20. - pip install wheel
  21. script:
  22. - python setup.py bdist_wheel
  23. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
  24. after_success:
  25. - codecov

A Python package for graph kernels, graph edit distances and graph pre-image problem.