Files
edx-platform/pavement.py
Kira Miller 175fb0caf8 fix: version bump (#33208)
* fix: version bump

* fix: retrigger tests
2023-09-08 18:13:05 +00:00

13 lines
635 B
Python

import sys # lint-amnesty, pylint: disable=django-not-configured, missing-module-docstring
import os
# Ensure that we can import pavelib, and that our copy of pavelib
# takes precedence over anything else installed in the virtualenv.
# In local dev, we usually don't need to do this, because Python
# automatically puts the current working directory on the system path.
# Until we re-run pip install, the other copies of edx-platform could
# take precedence, leading to some strange results.
sys.path.insert(0, os.path.dirname(__file__))
from pavelib import * # lint-amnesty, pylint: disable=wildcard-import, wrong-import-position