File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 26
26
id : set-version
27
27
run : |
28
28
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))
30
30
[ $GITHUB_EVENT_NAME == 'release' ] && VERSION=${{ github.event.release.tag_name }} && VERSION=${VERSION/v/}
31
31
echo VERSION = $VERSION
32
32
sed -ie "s/version = .*/version = $VERSION/" setup.cfg
37
37
NAME="testcontainers-iris"-${VERSION}-py3-none-any
38
38
echo name=$NAME >> $GITHUB_OUTPUT
39
39
- name : Test package
40
- run : pytest -k community
40
+ run : pytest -vs - k community
41
41
- name : Build package
42
42
run : python -m build
43
43
- name : Publish package
Original file line number Diff line number Diff line change 3
3
description = "InterSystems IRIS component of testcontainers-python."
4
4
5
5
setup (
6
+ name = "testcontainers-iris" ,
6
7
packages = find_namespace_packages (),
7
8
description = description ,
8
9
install_requires = [
You can’t perform that action at this time.
0 commit comments