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

1234567891011121314151617181920212223242526272829
  1. ---
  2. environment:
  3. matrix:
  4. -
  5. PYTHON: "C:\\Python36"
  6. -
  7. PYTHON: "C:\\Python36-x64"
  8. -
  9. PYTHON: "C:\\Python37"
  10. -
  11. PYTHON: "C:\\Python37-x64"
  12. -
  13. PYTHON: "C:\\Python38"
  14. -
  15. PYTHON: "C:\\Python38-x64"
  16. #skip_commits:
  17. #files:
  18. #- "*.yml"
  19. #- "*.rst"
  20. #- "LICENSE"
  21. install:
  22. - "%PYTHON%\\python.exe -m pip install -U pip"
  23. - "%PYTHON%\\python.exe -m pip install wheel"
  24. - "%PYTHON%\\python.exe -m pip install -r requirements.txt"
  25. - "%PYTHON%\\python.exe -m pip install -U pytest"
  26. build: false
  27. test_script:
  28. - "%PYTHON%\\python.exe setup.py bdist_wheel"
  29. - "%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.