-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Reduced min version to py 3.10
- Loading branch information
Showing
6 changed files
with
60 additions
and
10 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ htmlcov/ | |
.coverage | ||
tmp*/ | ||
dist/ | ||
.nox | ||
|
||
*.pyc | ||
*.bak | ||
|
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 @@ | ||
import nox | ||
|
||
@nox.session( | ||
python=["3.12", "3.11", "3.10"] | ||
) | ||
def test(session): | ||
session.install(".[dev]") | ||
session.run("pytest") |
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,45 @@ | ||
|
||
def test_import_eds_utils(): | ||
import objdictgen.eds_utils | ||
|
||
def test_import_gen_cfile(): | ||
import objdictgen.gen_cfile | ||
|
||
def test_import_jsonod(): | ||
import objdictgen.jsonod | ||
|
||
def test_import_maps(): | ||
import objdictgen.maps | ||
|
||
def test_import_node(): | ||
import objdictgen.node | ||
|
||
def test_import_nodelist(): | ||
import objdictgen.nodelist | ||
|
||
def test_import_nodemanager(): | ||
import objdictgen.nodemanager | ||
|
||
def test_import_nosis(): | ||
import objdictgen.nosis | ||
|
||
def test_import_typing(): | ||
import objdictgen.typing | ||
|
||
def test_import_ui_commondialogs(): | ||
import objdictgen.ui.commondialogs | ||
|
||
def test_import_ui_exception(): | ||
import objdictgen.ui.exception | ||
|
||
def test_import_ui_networkedit(): | ||
import objdictgen.ui.networkedit | ||
|
||
def test_import_ui_networkeditortemplate(): | ||
import objdictgen.ui.networkeditortemplate | ||
|
||
def test_import_ui_objdictedit(): | ||
import objdictgen.ui.objdictedit | ||
|
||
def test_import_ui_subindextable(): | ||
import objdictgen.ui.subindextable |