-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: failing CI tests #396
Conversation
e81b595
to
c13fb8c
Compare
@feoh, sorry, It seems like there's some new error coming on CI when running the tests. I'll look into them and will re-label this PR |
run_devstack_integration_tests.sh
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CI was failing due to no test in recently added chat plugin. I added the conditions here to gracefully handle this case
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The edx-sysadmin tests were failing due to the removal of "import" management command from LMS in openedx/edx-platform#35851
import_cmd = importlib.import_module( | ||
"cms.djangoapps.contentstore.management.commands.import" | ||
) | ||
management.call_command( | ||
"import", | ||
import_cmd.Command(), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we can replace all this with?
management.call_command("import",
app_label="cms"
...
)
fcc7b5e
to
c530f6b
Compare
for more information, see https://pre-commit.ci
What are the relevant tickets?
Closes https://github.com/mitodl/hq/issues/6086
Description (What does it do?)
CI was failing after the merge of overhangio/tutor@a666732. This PR removes python 3.8 from CI.
Note: edx-platform is also running tests only on python 3.11
Screenshots (if appropriate):
How can this be tested?
Verify that all the checks are passing and all the tests are running
Additional Context