Skip to content
Open
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
6 changes: 6 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ on:
branches: master
pull_request:

concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true

permissions: read-all

jobs:

postgres:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
container_name: postgresql_database
image: postgres:latest
volumes:
- postgresql_database_data:/var/lib/postgresql/data
- postgresql_database_data:/var/lib/postgresql
restart: always
ports:
- 5432:5432
Expand Down
6 changes: 3 additions & 3 deletions tcms_github_app/tests/test_plugin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2019 Alexander Todorov <atodorov@otb.bg>
# Copyright (c) 2019-2026 Alexander Todorov <atodorov@otb.bg>
#
# Licensed under GNU Affero General Public License v3 or later (AGPLv3+)
# https://www.gnu.org/licenses/agpl-3.0.html
Expand All @@ -19,13 +19,13 @@ def test_menu_is_updated(self):
Then navigation menu under PLUGINS will be extended
"""
for name, target in settings.MENU_ITEMS:
if name == 'PLUGINS':
if name == 'MORE':
for menu_item in menu.MENU_ITEMS:
self.assertIn(menu_item, target)

return

self.fail('PLUGINS not found in settings.MENU_ITEMS')
self.fail('MORE not found in settings.MENU_ITEMS')

def test_menu_rendering(self):
"""
Expand Down
Loading