-
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.
- Loading branch information
Showing
14 changed files
with
5 additions
and
372 deletions.
There are no files selected for viewing
Submodule typing
updated
17 files
+41 −0 | .github/workflows/release.yml | |
+65 −0 | .github/workflows/test.yml | |
+1,204 −0 | .gitignore | |
+20 −0 | Makefile | |
+97 −2 | README.md | |
+0 −0 | potc_typing/__init__.py | |
+0 −0 | potc_typing/config/__init__.py | |
+19 −0 | potc_typing/config/meta.py | |
+21 −0 | potc_typing/plugin.py | |
+5 −0 | pytest.ini | |
+12 −0 | requirements-test.txt | |
+1 −0 | requirements.txt | |
+71 −0 | setup.py | |
+1 −0 | test/__init__.py | |
+0 −0 | test/config/__init__.py | |
+9 −0 | test/config/test_meta.py | |
+23 −0 | test/test_plugin.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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +0,0 @@ | ||
from .config import * | ||
from .entry import * | ||
from .fixture import * | ||
from .rules import * | ||
from .translate import * | ||
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 +0,0 @@ | ||
from .test_meta import TestConfigMeta | ||
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 +0,0 @@ | ||
from .cli import * | ||
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 +0,0 @@ | ||
from .test_export import TestEntryCliExport | ||
from .test_trans import TestEntryCliTrans | ||
from .test_version import TestEntryCliVersion | ||
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,4 +0,0 @@ | ||
from .test_addons import TestFixtureAddons | ||
from .test_chain import TestFixtureChain | ||
from .test_common import TestFixtureCommon | ||
from .test_imports import TestFixtureImports | ||
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 +0,0 @@ | ||
from .native import * | ||
from .test_basic import TestRulesProvementBasic, TestRulesProvementBlank, TestRulesProvementCommon | ||
from .test_installed import TestRulesInstalled | ||
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,2 +0,0 @@ | ||
from .test_builtins import TestRulesNativeBuiltins | ||
from .test_typing import TestRuleNativeTyping | ||
Oops, something went wrong.