-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge: add previous commits on branch master
- Loading branch information
Showing
87 changed files
with
3,296 additions
and
2,056 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 |
---|---|---|
|
@@ -7,7 +7,8 @@ on: | |
branches: [master] | ||
|
||
jobs: | ||
Linting: | ||
linting: | ||
name: Linting | ||
if: github.event_name == 'pull_request' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -16,88 +17,144 @@ jobs: | |
# requites to grab the history of the PR | ||
fetch-depth: 0 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
cache: 'pip' | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: --color=always --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }} | ||
|
||
Pytest: | ||
pytest: | ||
name: Pytest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
python-version: ["3.7", "3.8", "3.9"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Cache downloaded resources | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.data/ | ||
key: resources | ||
|
||
# - name: Cache pip | ||
# uses: actions/cache@v3 | ||
# with: | ||
# path: ~/.cache/pip | ||
# key: ${{ runner.os }}-python-${{ matrix.python-version }}-pip | ||
|
||
- run: echo WEEK=$(date +%V) >>$GITHUB_ENV | ||
shell: bash | ||
|
||
- uses: hynek/setup-cached-uv@v1 | ||
with: | ||
cache-suffix: -tests-${{ matrix.python-version }}-${{ env.WEEK }} | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v2 | ||
with: | ||
distribution: "temurin" # See 'Supported distributions' for available options | ||
java-version: "8" | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
architecture: x64 | ||
cache: 'pip' | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install --upgrade pip | ||
pip install pipx | ||
pipx install poetry | ||
pip install -e '.[dev,setup]' | ||
uv venv | ||
source .venv/bin/activate | ||
uv pip install -e '.[dev,setup]' pytest-xdist poetry pip | ||
- name: Test with Pytest on Python ${{ matrix.python-version }} | ||
env: | ||
UMLS_API_KEY: ${{ secrets.UMLS_API_KEY }} | ||
run: python -m pytest --cov edsnlp --cov-report xml --ignore tests/test_docs.py | ||
run: | | ||
source .venv/bin/activate | ||
coverage run -m pytest --ignore tests/test_docs.py # -n auto | ||
# coverage combine | ||
# mv .coverage .coverage.${{ matrix.python-version }} | ||
if: matrix.python-version != '3.9' | ||
|
||
- name: Test with Pytest on Python ${{ matrix.python-version }} | ||
env: | ||
UMLS_API_KEY: ${{ secrets.UMLS_API_KEY }} | ||
run: python -m pytest --cov edsnlp --cov-report xml | ||
run: | | ||
source .venv/bin/activate | ||
coverage run -m pytest # -n auto | ||
# coverage combine | ||
# mv .coverage .coverage.${{ matrix.python-version }} | ||
if: matrix.python-version == '3.9' | ||
|
||
- name: Upload coverage | ||
uses: codecov/codecov-action@v2 | ||
- name: Upload coverage data | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: coverage-data-${{ matrix.python-version }} | ||
path: .coverage.* | ||
if-no-files-found: ignore | ||
|
||
coverage: | ||
name: Coverage | ||
needs: pytest | ||
uses: aphp/foldedtensor/.github/workflows/coverage.yml@main | ||
with: | ||
base-branch: master | ||
coverage-data-pattern: coverage-data-* | ||
coverage-report: coverage.txt | ||
coverage-badge: coverage.svg | ||
coverage-branch: coverage | ||
|
||
Documentation: | ||
documentation: | ||
name: Documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.9" | ||
cache: 'pip' | ||
# cache: 'pip' | ||
|
||
- run: echo WEEK=$(date +%V) >>$GITHUB_ENV | ||
shell: bash | ||
|
||
- uses: hynek/setup-cached-uv@v1 | ||
with: | ||
cache-suffix: -docs-${{ matrix.python-version }}-${{ env.WEEK }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install '.[dev]' | ||
uv venv | ||
uv pip install '.[dev]' | ||
- name: Build documentation | ||
run: | | ||
source .venv/bin/activate | ||
mkdocs build --clean | ||
Installation: | ||
simple-installation: | ||
name: Simple installation | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
fail-fast: true | ||
matrix: | ||
python-version: ["3.7", "3.8", "3.9"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
cache: 'pip' | ||
|
||
- run: echo WEEK=$(date +%V) >>$GITHUB_ENV | ||
shell: bash | ||
|
||
- uses: hynek/setup-cached-uv@v1 | ||
with: | ||
cache-suffix: -simple-install-${{ matrix.python-version }}-${{ env.WEEK }} | ||
|
||
- name: Install library | ||
run: | | ||
pip install . | ||
uv venv | ||
uv pip install . |
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
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
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
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 @@ | ||
# Trainable Span Classifier {: #edsnlp.pipes.trainable.span_classifier.factory.create_component } | ||
|
||
::: edsnlp.pipes.trainable.span_classifier.factory.create_component | ||
options: | ||
heading_level: 2 | ||
show_bases: false | ||
show_source: false | ||
only_class_level: true |
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
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
Oops, something went wrong.