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 420 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
123456789101112131415161718192021222324
  1. language: python
  2. python:
  3. - '3.5'
  4. - '3.6'
  5. - '3.7'
  6. - '3.8'
  7. before_install:
  8. - python --version
  9. - pip install -U pip
  10. - pip install -U pytest
  11. - pip install codecov
  12. - pip install coverage
  13. - pip install pytest-cov
  14. install:
  15. - pip install -r requirements.txt
  16. - pip install wheel
  17. script:
  18. - python setup.py bdist_wheel
  19. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
  20. after_success:
  21. - codecov

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