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

Makefile #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

steps:
- uses: actions/checkout@v2
Expand All @@ -33,6 +36,7 @@ jobs:
run: |
pip install wheel
pip install coverage
pip install six
pip install pyramid==1.9.4 repoze.zcml==1.0b1 repoze.workflow==1.0b1
pip install https://github.com/conestack/node/archive/master.zip
pip install https://github.com/conestack/yafowil.webob/archive/master.zip
Expand All @@ -41,9 +45,9 @@ jobs:
- name: Run tests
run: |
python --version
python -m cone.zodb.tests.__init__
python -m src/cone/zodb/tests

- name: Run coverage
run: |
coverage run --source=src/cone/zodb -m cone.zodb.tests.__init__
coverage run --source=src/cone/zodb -m src/cone/zodb/tests
coverage report --fail-under=100
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@
/py3/
/htmlcov/
/dist/
/constraints-mxdev.txt
/requirements-mxdev.txt
/.mxmake/
/.venv/
/venv/

6 changes: 5 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ Changes
1.0a4 (unreleased)
------------------

- Nothing changed yet.
- Setup Makefile.
[lenadax]

- Run tests with pytest.
[lenadax]


1.0a3 (2022-10-06)
Expand Down
Loading
Loading