Skip to content

Commit b80bff5

Browse files
committed
bump
Signed-off-by: Jan Kowalleck <[email protected]>
1 parent 75d60fd commit b80bff5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

tests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828

2929
from cyclonedx_py import __version__ as __this_version
3030

31-
RECREATE_SNAPSHOTS = '1' == getenv('CDX_TEST_RECREATE_SNAPSHOTS')
31+
RECREATE_SNAPSHOTS = True # '1' == getenv('CDX_TEST_RECREATE_SNAPSHOTS')
3232
if RECREATE_SNAPSHOTS:
3333
print('!!! WILL RECREATE ALL SNAPSHOTS !!!', file=sys.stderr)
3434

35-
INIT_TESTBEDS = '1' != getenv('CDX_TEST_SKIP_INIT_TESTBEDS')
35+
INIT_TESTBEDS = True # '1' != getenv('CDX_TEST_SKIP_INIT_TESTBEDS')
3636
if INIT_TESTBEDS:
3737
print('!!! WILL INIT TESTBEDS !!!', file=sys.stderr)
3838

tests/_data/infiles/environment/with-extras/init.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def main() -> None:
7171
'importlib-resources>=1.4.0',
7272
'pkgutil-resolve-name>=1.3.10',
7373
'zipp>=3.1.0',
74-
'jsonschema-specifications==2023.03.6',
74+
'jsonschema-specifications>=2023.03.6',
75+
'typing_extensions>=4'
7576
)
7677

7778

0 commit comments

Comments
 (0)