File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 4242 - name : Generate Report
4343 run : |
4444 coverage run ./run_tests.py
45- - name : Generate XML report
46- run : |
4745 coverage xml
4846 - name : Upload Coverage to Codecov
4947 uses : codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7
Original file line number Diff line number Diff line change 1+ from unittest import skipIf
2+
3+ from cms import __version__ as cms_version
14from cms .api import add_plugin
25from cms .test_utils .testcases import CMSTestCase
36from django import forms
912from .fixtures import TestFixture
1013
1114
15+ @skipIf (cms_version < "4" , "Form rendering tests require django CMS 4 or higher" )
1216class FormRenderingTestCase (TestFixture , CMSTestCase ):
1317 """Tests for rendering forms including template tags"""
1418
You can’t perform that action at this time.
0 commit comments