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
Transition away from the "remote devstack" model where IDAs implemented
their own devstack integration. This is no longer necessary because all
IDAs should now be directly integrated with devstack by adding make
targets, provision scripts, and docker-compose services DIRECTLY within
edx/devstack.
- Overhaul docker-compose.yml to completely change the purpose of the
`app` container to be exclusively for running tests.
- Update a bunch of other files to reflect the new purpose of the
testing-only `app` container.
Doing this first in enterprise-access to serve as a model we can test
and iron out before exporting to the rest of enterprise IDAs.
description: Run code quality checks (linting, style, PII annotations) in the enterprise-access Docker container. Use when the user wants to run quality checks, lint code, or verify code style compliance.
Copy file name to clipboardExpand all lines: .claude/skills/unit-tests/SKILL.md
+27-7Lines changed: 27 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
name: unit-tests
3
3
description: Run Django unit tests in the enterprise-access Docker container. Use when the user wants to run tests, check if tests pass, or verify test coverage.
@@ -60,10 +60,10 @@ If `<TEST_FILES>` specifies a single directory which represents a domain, such a
60
60
Convert the directory path to a Python module path for `--cov`: replace `/` with `.` and strip any trailing slash. Example: `enterprise_access/apps/bffs/` → `enterprise_access.apps.bffs`
Copy file name to clipboardExpand all lines: README.rst
+12-57Lines changed: 12 additions & 57 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,74 +3,29 @@ Service to manage access to content for enterprise users.
3
3
Setting up enterprise-access
4
4
--------------------------
5
5
6
-
Prerequisites
7
-
^^^^^^^^^^^^^
8
-
- Set the ``DEVSTACK_WORKSPACE`` env variable (either locally or in your shell config file: ``.bash_rc``, ``.zshrc``, or equivalent) to the folder which contains this repo and the `devstack` repo.
0 commit comments