pUnit 1.2.0__tar.gz → 1.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- punit-1.2.3/.scripts/punit +8 -0
- {punit-1.2.0 → punit-1.2.3}/LICENSE +1 -1
- {punit-1.2.0/src/pUnit.egg-info → punit-1.2.3}/PKG-INFO +2 -2
- {punit-1.2.0 → punit-1.2.3}/pyproject.toml +1 -1
- {punit-1.2.0 → punit-1.2.3/src/pUnit.egg-info}/PKG-INFO +2 -2
- {punit-1.2.0 → punit-1.2.3}/src/punit/TestResult.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/__init__.py +2 -2
- {punit-1.2.0 → punit-1.2.3}/src/punit/__main__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/assertions/__init__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/assertions/collections.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/assertions/exceptions.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/assertions/strings.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/cli.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/discovery/TestModuleDiscovery.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/discovery/__init__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/facts/Fact.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/facts/FactManager.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/facts/__init__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/reports/HtmlReportGenerator.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/reports/JUnitReportGenerator.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/reports/__init__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/runner.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/theories/Theory.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/theories/TheoryManager.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/theories/__init__.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/traits/Trait.py +1 -1
- {punit-1.2.0 → punit-1.2.3}/src/punit/traits/__init__.py +1 -1
- punit-1.2.0/.scripts/punit +0 -7
- {punit-1.2.0 → punit-1.2.3}/README.md +0 -0
- {punit-1.2.0 → punit-1.2.3}/setup.cfg +0 -0
- {punit-1.2.0 → punit-1.2.3}/src/pUnit.egg-info/SOURCES.txt +0 -0
- {punit-1.2.0 → punit-1.2.3}/src/pUnit.egg-info/dependency_links.txt +0 -0
- {punit-1.2.0 → punit-1.2.3}/src/pUnit.egg-info/requires.txt +0 -0
- {punit-1.2.0 → punit-1.2.3}/src/pUnit.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
# SPDX-FileCopyrightText: © 2026 Shaun Wilson
|
|
3
|
+
# SPDX-License-Identifier: MIT
|
|
4
|
+
##
|
|
5
|
+
from subprocess import run
|
|
6
|
+
from sys import executable, argv, exit
|
|
7
|
+
result = run([ executable, "-m", "punit" ] + argv[1:], check=False)
|
|
8
|
+
exit(result.returncode)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pUnit
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: A modernized unit-test framework for Python.
|
|
5
5
|
Author-email: Shaun Wilson <mrshaunwilson@msn.com>
|
|
6
6
|
License: MIT License
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
© 2024 Shaun Wilson
|
|
9
9
|
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
11
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pUnit
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.3
|
|
4
4
|
Summary: A modernized unit-test framework for Python.
|
|
5
5
|
Author-email: Shaun Wilson <mrshaunwilson@msn.com>
|
|
6
6
|
License: MIT License
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
© 2024 Shaun Wilson
|
|
9
9
|
|
|
10
10
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
11
|
of this software and associated documentation files (the "Software"), to deal
|
punit-1.2.0/.scripts/punit
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|