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 681 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
1234567891011121314151617181920212223242526272829303132
  1. language: python
  2. python:
  3. - '3.6'
  4. - '3.7'
  5. - '3.8'
  6. - '3.9'
  7. #- '3.10'
  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. - sudo apt-get -y install gfortran liblapack-dev
  16. install:
  17. - pip install -r requirements.txt
  18. - pip install wheel
  19. script:
  20. - python setup.py bdist_wheel
  21. - if [ $TRAVIS_PYTHON_VERSION == 3.6 ];
  22. then pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/;
  23. else pytest -v --cov-config=.coveragerc --cov-report term --cov=gklearn gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py;
  24. fi
  25. after_success:
  26. - codecov

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