I hereby claim:
- I am aatchison on github.
- I am aatchison (https://keybase.io/aatchison) on keybase.
- I have a public key whose fingerprint is 4874 E823 F124 43ED 070D 3345 9391 6D72 6465 74F9
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -Ee | |
| TOP=$(cd $(dirname $0)/.. && pwd -L) | |
| VIRTUALENV_ROOT=${VIRTUALENV_ROOT:-"${HOME}/.virtualenvs/mycroft"} | |
| MYCROFT_CORE_SRC=${TOP}/src/mycroft-core | |
| if [ "$1" = "-q" ]; then | |
| QUIET="echo" |
| #!/usr/bin/env bash | |
| set -Ee | |
| TOP=$(cd $(dirname $0)/.. && pwd -L) | |
| VIRTUALENV_ROOT=${VIRTUALENV_ROOT:-"${HOME}/.virtualenvs/mycroft"} | |
| MYCROFT_CORE_SRC=${TOP}/src/mycroft-core | |
| if [ "$1" = "-q" ]; then | |
| QUIET="echo" |
| package main | |
| import ( | |
| "bytes" | |
| "fmt" | |
| "io" | |
| "log" | |
| "os" | |
| "os/exec" | |
| ) |
PR: fix/e2e-compose-dind → main
Last updated: 2026-02-23
E2E tests run the full stack (postgres, backend, reverse-proxy, frontend) via Docker Compose and exercise the app with Playwright against Firefox. Integration tests run vitest inside the backend container against a live database.