-
Notifications
You must be signed in to change notification settings - Fork 41
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 #601 from gauge-sh/e2e-external-tests-2-6-25
Add e2e test for check-external on many_features dir
- Loading branch information
Showing
6 changed files
with
105 additions
and
4 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,24 @@ | ||
[project] | ||
name = "many_features" | ||
version = "0.0.1" | ||
dependencies = [ | ||
"pyyaml~=6.0", | ||
"tomli>=1.2.2", | ||
"tomli-w~=1.0", | ||
"rich~=13.0", | ||
"prompt-toolkit~=3.0", | ||
"GitPython~=3.1", | ||
"networkx>=2.6,<4.0", | ||
"pydot>=2,<4", | ||
"stdlib-list>=0.10.0; python_version < '3.10'", | ||
"importlib_metadata>=6.0; python_version == '3.7'", | ||
] | ||
|
||
[build-system] | ||
requires = ["maturin>=1.5,<2.0"] | ||
build-backend = "maturin" | ||
|
||
[tool.maturin] | ||
python-source = "real_src" | ||
module-name = "tach.extension" | ||
features = ["pyo3/extension-module"] |
2 changes: 2 additions & 0 deletions
2
python/tests/example/many_features/real_src/django_settings.py
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
import django | ||
|
||
OTHER_FIELD = "value" | ||
|
||
INSTALLED_APPS = [ | ||
|
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# tach-ignore | ||
|
||
from external import something |
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 @@ | ||
from django.conf import settings |
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