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 1.2 kB

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
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. jobs:
  18. include:
  19. - python: 3.5
  20. script:
  21. - python setup.py bdist_wheel
  22. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
  23. include:
  24. - python: 3.6
  25. script:
  26. - python setup.py bdist_wheel
  27. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/
  28. include:
  29. - python: 3.7
  30. script:
  31. - python setup.py bdist_wheel
  32. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
  33. include:
  34. - python: 3.8
  35. script:
  36. - python setup.py bdist_wheel
  37. - pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py
  38. after_success:
  39. - codecov

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