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

Introduce Omniverse kits #385

Merged
merged 9 commits into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
*.so
*.o
*.cache
*.whl
.pytest_cache/
*/__pycache__

Expand Down
4 changes: 3 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,13 @@ repos:
-r,
-x, "venv/*, tests/*"
]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
hooks:
- id: mypy
# Exclude only works here, not in config files
exclude: "tests/|doc/"
exclude: "tests/|doc/|src/ansys/pyensight/core/exts/"

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
Expand All @@ -46,4 +47,5 @@ repos:
- id: check-yaml
- id: trailing-whitespace
- id: check-added-large-files
exclude: "src/ansys/pyensight/core/exts/[^\/]+/data/"
- id: check-case-conflict
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ python_version = 3.9
strict = false
namespace_packages = true
explicit_package_bases = true
exclude = ["tests/", "^doc"]
exclude = ["tests/", "^doc", "^src/ansys/pyensight/core/exts/"]
mariostieriansys marked this conversation as resolved.
Show resolved Hide resolved
no_site_packages = true
follow_imports = "skip"

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from .extension import *
Loading
Loading