diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index b3eab8f6ec..d08dc1aadc 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -12,7 +12,6 @@ jobs: if: (github.repository == 'edx/edx-platform-private') || (github.repository == 'openedx/edx-platform' && (startsWith(github.base_ref, 'open-release') == false)) runs-on: [ edx-platform-runner ] strategy: - fail-fast: false matrix: python-version: - "3.8" diff --git a/xmodule/tests/test_discussion.py b/xmodule/tests/test_discussion.py index f50006d1b9..4bea706be5 100644 --- a/xmodule/tests/test_discussion.py +++ b/xmodule/tests/test_discussion.py @@ -69,7 +69,6 @@ class DiscussionXBlockImportExportTests(TestCase): self.runtime_mock = mock.Mock(spec=Runtime) self.runtime_mock.construct_xblock_from_class = mock.Mock(side_effect=self._construct_xblock_mock) self.runtime_mock.get_policy = mock.Mock(return_value={}) - self.id_generator = mock.Mock() def _construct_xblock_mock(self, cls, keys): # pylint: disable=unused-argument """