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.

.appveyor.yml 689 B

1234567891011121314151617181920212223242526
  1. environment:
  2. matrix:
  3. - PYTHON: "C:\\Python36"
  4. - PYTHON: "C:\\Python36-x64"
  5. - PYTHON: "C:\\Python37"
  6. - PYTHON: "C:\\Python37-x64"
  7. - PYTHON: "C:\\Python38"
  8. - PYTHON: "C:\\Python38-x64"
  9. # skip_commits:
  10. # files:
  11. # - "*.yml"
  12. # - "*.rst"
  13. # - "LICENSE"
  14. install:
  15. - "%PYTHON%\\python.exe -m pip install -U pip"
  16. - "%PYTHON%\\python.exe -m pip install wheel"
  17. - "%PYTHON%\\python.exe -m pip install -r requirements.txt"
  18. - "%PYTHON%\\python.exe -m pip install -U pytest"
  19. build: off
  20. test_script:
  21. - "%PYTHON%\\python.exe setup.py bdist_wheel"
  22. - "%PYTHON%\\python.exe -m pytest -v gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py"

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