Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.11]
python-version: [3.12]
make-command: [ doc8, flake8, pylint, check-build, integration_test]
kiwitcms-url: [tcms.kiwitcms.org, public.tenant.kiwitcms.org]

Expand Down Expand Up @@ -52,3 +52,11 @@ jobs:
# short commit number
export TCMS_BUILD=$(echo $GITHUB_SHA | cut -c1-7)
make ${{ matrix.make-command }}

- name: Upload logs
if: always()
uses: actions/upload-artifact@v7
with:
name: logs
path: '*.log'
if-no-files-found: warn
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Django
Django<6
tcms-api>=12.7
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,7 @@ def get_version():
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
Expand Down
Loading