Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

using cython #24

Closed
wants to merge 17 commits into from
14 changes: 8 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ "ubuntu-latest", "windows-2019", "macos-latest" ]
python-version: [ "3.8", "3.9", "3.10" ]
python-version: [ "3.10" ]

steps:
- uses: actions/checkout@v2
Expand All @@ -42,13 +42,15 @@ jobs:

- name: Install and Build
run: |
pip install .
python setup.py build
python -m pip install .
python setup.py build_ext --inplace
python -m pip install .

- name: Test with pytest
run: |
pip install pytest-cov
pytest -s --cov=hygese --cov-report=xml
python -m pytest -s --cov=hygese --cov-report=xml
# python hygese/tests/test_cvrp.py

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
deps/
usr
wrapper.c

build_tmp/
.idea
*.dylib
Expand Down
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.PHONY: clean
clean:
rm -rf build deps hygese/usr hygese/wrapper.c hygese/*.so hygese/*.dll hygese/*.dylib dist *.egg-info
2 changes: 1 addition & 1 deletion hygese/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .hygese import *
from hygese.solver import AlgorithmParameters, Solver
352 changes: 0 additions & 352 deletions hygese/hygese.py

This file was deleted.

Loading