Skip to content

Commit 7b74843

Browse files
authored
Merge pull request #10 from desultory/dev
bup ver
2 parents fe33b97 + 84b4cfb commit 7b74843

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "zenlib"
7-
version = "3.1.0"
7+
version = "3.1.1"
88
authors = [
99
{ name="Desultory", email="[email protected]" },
1010
]

tests/test_namespace.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
from os import environ
22
from unittest import TestCase, main, skipIf
33

4-
5-
64
from zenlib.util import nsexec
75

86

@@ -13,13 +11,17 @@ class TestPassedException(Exception):
1311
def test_exception():
1412
raise TestPassedException("This is a test exception")
1513

14+
1615
def test_add_func(a, b):
1716
return a + b
1817

18+
1919
def test_uid_gid():
2020
import os
21+
2122
return os.getuid(), os.getgid()
2223

24+
2325
class TestNamespace(TestCase):
2426
@skipIf(environ.get("CI") == "true", "Skipping test_namespace.py in CI")
2527
def test_user_namespace_exceptions(self):

0 commit comments

Comments
 (0)