-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #104 from OnroerendErfgoed/develop
Develop
- Loading branch information
Showing
30 changed files
with
733 additions
and
412 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[flake8] | ||
application_import_names = uriregistry, tests | ||
exclude = .venv, | ||
.tox, | ||
__pycache__, | ||
import-order-style = pycharm | ||
max-line-length = 90 | ||
ignore = E402, E405, W503, F403, F405 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Uriregistry backend tests | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
paths: | ||
- uriregistry/** | ||
- .github/workflows/uriregistry.yaml | ||
- scripts/** | ||
- pyproject.toml | ||
- requirements*.txt | ||
- tests/** | ||
|
||
push: | ||
branches: | ||
- main | ||
env: | ||
PYTHON_VERSION: '3.11' | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ env.PYTHON_VERSION }} | ||
- name: Install python requirements | ||
env: | ||
HATCH_BUILD_NO_HOOKS: true | ||
working-directory: ./ | ||
run: | | ||
pip --version | ||
pip install pip-tools | ||
pip-sync requirements-dev.txt | ||
pip install -e . | ||
- name: Python tests | ||
run: pytest tests --exitfirst --capture=no -vvv --full-trace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-yaml | ||
- id: end-of-file-fixer | ||
types: [python] | ||
- id: trailing-whitespace | ||
types: [python] | ||
- repo: https://github.com/psf/black | ||
rev: 24.3.0 | ||
hooks: | ||
- id: black | ||
types: [python] | ||
args: [--preview] | ||
exclude: docs, tests | ||
- repo: https://github.com/PyCQA/flake8 | ||
rev: 7.0.0 | ||
hooks: | ||
- id: flake8 | ||
additional_dependencies: | ||
- flake8-import-order==0.18.2 | ||
- flake8-bugbear==24.2.6 | ||
types: [python] | ||
exclude: docs |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
0.4.0 (04-07-2024) | ||
================== | ||
|
||
- pyproj - gh actions - async workers (#102) | ||
|
||
0.3.1 (16-08-2022) | ||
================== | ||
|
||
- Avoid \"max\_workers must be greater than 0\"-Exception in case no | ||
applications are listed in the configurarion (\#97) | ||
|
||
0.3.0 (21-02-2022) | ||
================== | ||
|
||
- Improved performance (\#8) | ||
- Pyramid 2.0 upgrade (\#85) | ||
|
||
0.2.0 (07-12-2020) | ||
================== | ||
|
||
- Library update(\#69) | ||
- Py3 compatibel maken (\#66) | ||
|
||
0.1.2 (08-06-2017) | ||
================== | ||
|
||
- Make compatible with Python 3.5 | ||
- Update pyramid\_urireferencer to 0.6.0 (\#9) | ||
|
||
0.1.1 (04-08-2015) | ||
================== | ||
|
||
- Update pyramid\_urireferencer to 0.4.0 | ||
|
||
0.1.0 (11-06-2015) | ||
================== | ||
|
||
- Initial version | ||
- Works with pyramid\_urireferencer 0.2.0. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
UriRegistry | ||
=========== | ||
|
||
[![image](https://badge.fury.io/py/uriregistry.png)](http://badge.fury.io/py/uriregistry) | ||
[![image](https://readthedocs.org/projects/uriregistry/badge/?version=latest)](https://readthedocs.org/projects/uriregistry/?badge=latest) | ||
[![image](https://travis-ci.org/OnroerendErfgoed/uriregistry.png?branch=master)](https://travis-ci.org/OnroerendErfgoed/uriregistry) | ||
[![image](https://coveralls.io/repos/OnroerendErfgoed/uriregistry/badge.png?branch=master)](https://coveralls.io/r/OnroerendErfgoed/uriregistry) | ||
|
||
This project aims to provide a central location for keeping track of | ||
different resources through their URI\'s. It has been designed to answer | ||
one simple question: in which applications is a certain resource (ie. a | ||
URI) being used? |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.