diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 0d10e3a1..e786787e 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -35,6 +35,6 @@ jobs: - name: Generate Report run: | pip install -r tests/requirements/${{ matrix.requirements-file }} - coverage run setup.py test + coverage run run_tests.py - name: Upload Coverage to Codecov uses: codecov/codecov-action@v4 diff --git a/tests/test_plugin_tag.py b/tests/test_plugin_tag.py index 8f33cc2c..e1648255 100644 --- a/tests/test_plugin_tag.py +++ b/tests/test_plugin_tag.py @@ -87,7 +87,7 @@ def test_link_plugin(self): else: grouper = self.create_url(manual_url="/test/").url_grouper template = django_engine.from_string("""{% load frontend %} - {% plugin "link" name="Click" url_grouper=grouper site=test_site link_type="btn" link_context="primary" link_outline=False %} + {% plugin "textlink" name="Click" url_grouper=grouper site=test_site link_type="btn" link_context="primary" link_outline=False %} Click me! {% endplugin %} """) # noqa: B950