Skip to content

Commit 0894248

Browse files
committed
just checking
1 parent 473c18f commit 0894248

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
id: set-version
2727
run: |
2828
VERSION=$(grep version setup.cfg | cut -d= -f2 | tr -d '[:blank:]')
29-
[ $GITHUB_EVENT_NAME == 'push' ] && VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
29+
VERSION+=b && VERSION+=$(($(git tag -l "*$VERSION*" | cut -db -f2 | sort -n | tail -1)+1))
3030
[ $GITHUB_EVENT_NAME == 'release' ] && VERSION=${{ github.event.release.tag_name }} && VERSION=${VERSION/v/}
3131
echo VERSION = $VERSION
3232
sed -ie "s/version = .*/version = $VERSION/" setup.cfg
@@ -37,7 +37,7 @@ jobs:
3737
NAME="testcontainers-iris"-${VERSION}-py3-none-any
3838
echo name=$NAME >> $GITHUB_OUTPUT
3939
- name: Test package
40-
run: pytest -k community
40+
run: pytest -vs -k community
4141
- name: Build package
4242
run: python -m build
4343
- name: Publish package

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
description = "InterSystems IRIS component of testcontainers-python."
44

55
setup(
6+
name="testcontainers-iris",
67
packages=find_namespace_packages(),
78
description=description,
89
install_requires=[

0 commit comments

Comments
 (0)