Skip to content

Commit c6297e5

Browse files
authored
fix: downgrade tutor integration tests v0.1.0 (#334)
fix: removed integration tests for Tutor versions less than 20.0.0.
1 parent 451f10c commit c6297e5

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
fail-fast: false
1010
max-parallel: 1
1111
matrix:
12-
tutor_version: ['<20.0.0', '<21.0.0', 'main']
12+
tutor_version: ['<21.0.0', 'main']
1313
steps:
1414
- name: Run Integration Tests
15-
uses: eduNEXT/integration-test-in-tutor@main
15+
uses: eduNEXT/integration-test-in-tutor@v0.1.0
1616
with:
1717
tutor_version: ${{ matrix.tutor_version }}
1818
tutor_plugins: 'forum'

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ Please do not update the unreleased notes.
1111

1212
<!-- Content should be placed here -->
1313

14+
## [v12.2.1](https://github.com/eduNEXT/eox-core/compare/v12.2.0...v12.2.1) - (2025-12-18)
15+
16+
### Changed
17+
18+
- Pin Tutor integration-tests GitHub Action version to avoid integration test failures.
19+
- Remove integration tests for Tutor<20.0.0
20+
1421
## [v12.2.0](https://github.com/eduNEXT/eox-core/compare/v12.1.0...v12.2.0) - (2025-10-13)
1522

1623
### Changed

eox_core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""
22
Init for main eox-core app
33
"""
4-
__version__ = '12.2.0'
4+
__version__ = '12.2.1'

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 12.2.0
2+
current_version = 12.2.1
33
commit = False
44
tag = False
55

0 commit comments

Comments
 (0)