From 43624fd9228d88d3e29edeb26b9ad3cc9c5b2eb4 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Fri, 17 Jan 2025 09:04:48 -0500 Subject: [PATCH] fix: Dropping terrain related config and docs. The terrain app and its stub servers were removed as a part of https://github.com/openedx/edx-platform/pull/36102 but these last few things got missed. --- .coveragerc | 1 - .coveragerc-local | 1 - docs/concepts/testing/testing.rst | 7 ------- 3 files changed, 9 deletions(-) diff --git a/.coveragerc b/.coveragerc index 26fe680f84ff..3dd061ce8e20 100644 --- a/.coveragerc +++ b/.coveragerc @@ -22,7 +22,6 @@ omit = lms/envs/* lms/djangoapps/*/migrations/* lms/djangoapps/*/features/* - common/djangoapps/terrain/* common/djangoapps/*/migrations/* openedx/core/djangoapps/*/migrations/* openedx/core/djangoapps/debug/* diff --git a/.coveragerc-local b/.coveragerc-local index 807e68b11113..d97bf738c3c4 100644 --- a/.coveragerc-local +++ b/.coveragerc-local @@ -21,7 +21,6 @@ omit = lms/envs/* lms/djangoapps/*/migrations/* lms/djangoapps/*/features/* - common/djangoapps/terrain/* common/djangoapps/*/migrations/* openedx/core/djangoapps/*/migrations/* openedx/core/djangoapps/debug/* diff --git a/docs/concepts/testing/testing.rst b/docs/concepts/testing/testing.rst index d8a79b9d6619..2f7947ee4598 100644 --- a/docs/concepts/testing/testing.rst +++ b/docs/concepts/testing/testing.rst @@ -226,13 +226,6 @@ Use this command to generate an HTML report:: The report is then saved in reports/xmodule/cover/index.html -To run tests for stub servers, for example for `YouTube stub server`_, you can -run one of these commands:: - - pytest --ds=cms.env.test common/djangoapps/terrain/stubs/tests/test_youtube_stub.py - -.. _YouTube stub server: https://github.com/openedx/edx-platform/blob/master/common/djangoapps/terrain/stubs/tests/test_youtube_stub.py - Handling flaky unit tests =========================