Skip to content

Commit 807a12b

Browse files
working on github tests
1 parent 8f77ad8 commit 807a12b

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
ruby: ['3.1', '3.2', '3.3']
13+
ruby: ['3.1', '3.2', '3.3', '3.4']
1414
redmine: ['6.0-stable', 'master']
1515
db: ['postgres', 'mysql']
16+
exclude:
17+
- ruby: '3.1'
18+
redmine: master
19+
- ruby: '3.4'
20+
redmine: 6.0-stable
1621
fail-fast: false
1722

1823
services:

test/test_helper.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@
1616
end
1717

1818
require File.expand_path "#{File.dirname __FILE__}/../../../test/test_helper"
19+
require File.expand_path "#{File.dirname __FILE__}/../../additionals/test/global_test_helper"
1920

2021
module RedmineHedgedoc
2122
module TestHelper
23+
include Additionals::GlobalTestHelper
24+
2225
def prepare_tests
2326
Role.where(id: [1, 2]).find_each do |r|
2427
r.permissions << :show_hedgedoc_pads

0 commit comments

Comments
 (0)