You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "…\contest-bitnp\contest\contest\urls.py", line 28, in <module>
path("__reload__/", include("django_browser_reload.urls")),
File "…\contest-bitnp\.venv\lib\site-packages\django\urls\conf.py", line 38, in include
urlconf_module = import_module(urlconf_module)
File "…\Python310\lib\importlib\__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 992, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1050, in _gcd_import
File "<frozen importlib._bootstrap>", line 1027, in _find_and_load
File "<frozen importlib._bootstrap>", line 1004, in _find_and_load_unlocked
ModuleNotFoundError: No module named 'django_browser_reload'
不知 CI 能过。这大约因为缓存了 dev 的包,注意poetry install时提示 No dependencies to install or update。
The text was updated successfully, but these errors were encountered:
In addition to caching your python dependencies you might find it useful to cache the Poetry installation itself. This should cut ~10 seconds of your total runtime and roughly 95% of this action's runtime.
- name: Load cached Poetry installationid: cached-poetryuses: actions/cache@v3with:
path: ~/.local # the path depends on the OSkey: poetry-0 # increment to reset cache
- name: Install Poetryif: steps.cached-poetry.outputs.cache-hit != 'true'uses: snok/install-poetry@v1
按照
doc/deploy.md
操作,migrate 会失败。不知 CI 能过。这大约因为缓存了 dev 的包,注意
poetry install
时提示 No dependencies to install or update。The text was updated successfully, but these errors were encountered: