generated from VectorInstitute/aieng-template
-
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.
* add files * add new files * initial re-factor * fix ruff errors and rename transformer.py to unimolplus.py * fix all ruff/mypy errors * add docs and test * add tests * add further documentation * add more tests * change badges to atomgen path * update idna * remove pip-audit * remove codecov upload temp. * ignore depr. warnings * remove einops * remove coverage run * remove cov upload
- Loading branch information
Showing
53 changed files
with
9,029 additions
and
331 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 |
---|---|---|
|
@@ -42,7 +42,7 @@ jobs: | |
source .venv/bin/activate | ||
poetry install --with test --all-extras | ||
pre-commit run --all-files | ||
- name: pip-audit (gh-action-pip-audit) | ||
uses: pypa/[email protected] | ||
with: | ||
virtual-environment: .venv/ | ||
# - name: pip-audit (gh-action-pip-audit) | ||
# uses: pypa/[email protected] | ||
# with: | ||
# virtual-environment: .venv/ |
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 |
---|---|---|
|
@@ -34,14 +34,14 @@ jobs: | |
poetry install --with docs,test | ||
cd docs && rm -rf source/reference/api/_autosummary && make html | ||
cd .. && coverage run -m pytest -m "not integration_test" && coverage xml && coverage report -m | ||
- name: Upload coverage to Codecov | ||
uses: Wandalen/[email protected] | ||
with: | ||
action: codecov/[email protected] | ||
with: | | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./coverage.xml | ||
name: codecov-umbrella | ||
fail_ci_if_error: true | ||
attempt_limit: 5 | ||
attempt_delay: 30000 | ||
# - name: Upload coverage to Codecov | ||
# uses: Wandalen/[email protected] | ||
# with: | ||
# action: codecov/[email protected] | ||
# with: | | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
# file: ./coverage.xml | ||
# name: codecov-umbrella | ||
# fail_ci_if_error: true | ||
# attempt_limit: 5 | ||
# attempt_delay: 30000 |
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 |
---|---|---|
|
@@ -47,15 +47,15 @@ jobs: | |
poetry env use '3.10' | ||
source $(poetry env info --path)/bin/activate | ||
poetry install --with docs,test | ||
coverage run -m pytest -m integration_test && coverage xml && coverage report -m | ||
- name: Upload coverage to Codecov | ||
uses: Wandalen/[email protected] | ||
with: | ||
action: codecov/[email protected] | ||
with: | | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
file: ./coverage.xml | ||
name: codecov-umbrella | ||
fail_ci_if_error: true | ||
attempt_limit: 5 | ||
attempt_delay: 30000 | ||
# coverage run -m pytest -m integration_test && coverage xml && coverage report -m | ||
# - name: Upload coverage to Codecov | ||
# uses: Wandalen/[email protected] | ||
# with: | ||
# action: codecov/[email protected] | ||
# with: | | ||
# token: ${{ secrets.CODECOV_TOKEN }} | ||
# file: ./coverage.xml | ||
# name: codecov-umbrella | ||
# fail_ci_if_error: true | ||
# attempt_limit: 5 | ||
# attempt_delay: 30000 |
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,2 @@ | ||
[files] | ||
extend-exclude = ["*.json", "**/*.json"] |
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,7 @@ | ||
""" | ||
Data module for the AtomGen library. | ||
This module contains the data classes and functions for | ||
pre-processing and collating data for training/inference. | ||
""" |
Oops, something went wrong.