Skip to content

Commit 0ba5880

Browse files
authored
Updating r7 from v7.2.0
2 parents 1992fd3 + 14db3be commit 0ba5880

File tree

5 files changed

+16
-12
lines changed

5 files changed

+16
-12
lines changed

.github/workflows/ApplicationTesting.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ jobs:
134134
dependencies = [req.strip() for req in requirements.split(" ")]
135135
136136
packages = {
137+
"aiohttp": "python-aiohttp:p",
137138
"coverage": "python-coverage:p",
138139
"docstr_coverage": "python-pyyaml:p python-types-pyyaml:p",
139140
"igraph": "igraph:p",
@@ -154,6 +155,7 @@ jobs:
154155
subPackages = {
155156
"pytooling": {
156157
"yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
158+
"pypi": "python-aiohttp:p",
157159
}
158160
}
159161

.github/workflows/UnitTesting.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ jobs:
224224
requirementsFile = Path(requirements)
225225
226226
if not requirementsFile.exists():
227-
print(f"::error title=FileNotFoundError::{ex}")
227+
print(f"::error title=FileNotFoundError::{requirementsFile}")
228228
exit(1)
229229
230230
print(f"requirements file: {requirementsFile.as_posix()}")
@@ -273,6 +273,7 @@ jobs:
273273
dependencies = [req.strip() for req in requirements.split(" ")]
274274
275275
packages = {
276+
"aiohttp": "python-aiohttp:p",
276277
"coverage": "python-coverage:p",
277278
"docstr_coverage": "python-pyaml:p python-types-pyyaml:p",
278279
"igraph": "igraph:p",
@@ -294,6 +295,7 @@ jobs:
294295
subPackages = {
295296
"pytooling": {
296297
"yaml": "python-ruamel-yaml:p python-ruamel.yaml.clib:p",
298+
"pypi": "python-aiohttp:p",
297299
},
298300
}
299301

myPackage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
__email__ = "[email protected]"
3737
__copyright__ = "2017-2025, Patrick Lehmann"
3838
__license__ = "Apache License, Version 2.0"
39-
__version__ = "7.0.1"
39+
__version__ = "7.2.0"
4040
__keywords__ = ["GitHub Actions"]
4141
__issue_tracker__ = "https://GitHub.com/pyTooling/Actions/issues"
4242

tests/platform/Specific.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,55 +44,55 @@
4444

4545
class PlatformTesting(TestCase):
4646
@mark.skipif(not CurrentPlatform.IsNativeLinux, reason="Skipped, if current platform isn't native Linux.")
47-
def test_ApplicationOnNativeLinux(self):
47+
def test_ApplicationOnNativeLinux(self) -> None:
4848
app = Application()
4949

5050
self.assertEqual(1, app.Value)
5151

5252
@mark.skipif(not CurrentPlatform.IsNativeMacOS, reason="Skipped, if current platform isn't native macOS.")
53-
def test_ApplicationOnNativeMacOS(self):
53+
def test_ApplicationOnNativeMacOS(self) -> None:
5454
app = Application()
5555

5656
self.assertEqual(2, app.Value)
5757

5858
@mark.skipif(not CurrentPlatform.IsNativeWindows, reason="Skipped, if current platform isn't native Windows.")
59-
def test_ApplicationOnNativeWindows(self):
59+
def test_ApplicationOnNativeWindows(self) -> None:
6060
app = Application()
6161

6262
self.assertEqual(3, app.Value)
6363

6464
@mark.skipif(not CurrentPlatform.IsMSYSOnWindows, reason="Skipped, if current platform isn't MSYS on Windows.")
65-
def test_ApplicationOnMSYS2OnWindows(self):
65+
def test_ApplicationOnMSYS2OnWindows(self) -> None:
6666
app = Application()
6767

6868
self.assertEqual(11, app.Value)
6969

7070
@mark.skipif(not CurrentPlatform.IsMinGW32OnWindows, reason="Skipped, if current platform isn't MinGW32 on Windows.")
71-
def test_ApplicationOnMinGW32OnWindows(self):
71+
def test_ApplicationOnMinGW32OnWindows(self) -> None:
7272
app = Application()
7373

7474
self.assertEqual(12, app.Value)
7575

7676
@mark.skipif(not CurrentPlatform.IsMinGW64OnWindows, reason="Skipped, if current platform isn't MinGW64 on Windows.")
77-
def test_ApplicationOnMinGW64OnWindows(self):
77+
def test_ApplicationOnMinGW64OnWindows(self) -> None:
7878
app = Application()
7979

8080
self.assertEqual(13, app.Value)
8181

8282
@mark.skipif(not CurrentPlatform.IsUCRT64OnWindows, reason="Skipped, if current platform isn't UCRT64 on Windows.")
83-
def test_ApplicationOnURTC64OnWindows(self):
83+
def test_ApplicationOnURTC64OnWindows(self) -> None:
8484
app = Application()
8585

8686
self.assertEqual(14, app.Value)
8787

8888
@mark.skipif(not CurrentPlatform.IsClang32OnWindows, reason="Skipped, if current platform isn't Clang32 on Windows.")
89-
def test_ApplicationOnClang32OnWindows(self):
89+
def test_ApplicationOnClang32OnWindows(self) -> None:
9090
app = Application()
9191

9292
self.assertEqual(15, app.Value)
9393

9494
@mark.skipif(not CurrentPlatform.IsClang64OnWindows, reason="Skipped, if current platform isn't Clang64 on Windows.")
95-
def test_ApplicationOnClang64OnWindows(self):
95+
def test_ApplicationOnClang64OnWindows(self) -> None:
9696
app = Application()
9797

9898
self.assertEqual(16, app.Value)

tests/unit/AppInit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535

3636
class Instantiation(TestCase):
37-
def test_Application(self):
37+
def test_Application(self) -> None:
3838
app = Application()
3939

4040
self.assertGreater(app.Value, 0)

0 commit comments

Comments
 (0)