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 663 B

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

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