Integration test suite first steps... #347
Merged
decentral1se
merged 7 commits from 2023-09-05 09:58:15 +00:00
integration-tests into main
Dismiss Review
Are you sure you want to dismiss this review?
Labels
Clear labels
bug
build
ci/cd
critical fix
design
documentation
duplicate
easy-first-issue
enhancement
help wanted
i10n
i18n
installer
invalid
question
release
release-candidate
security
tech-debt
test
wontfix
Something is not working
go build related issues
Building things with CI/CD
https://docs.coopcloud.tech/federation/resolutions/passed/010/
UI/UX
Documenting all the things
This issue or pull request already exists
Something for new people to get stuck into. We hope it's easy!
New feature
Need some help
Everything to do with localisation
Everything to do with internationalisation
Everything to do with the install script.
Something is wrong
More information is needed
Release management
Related to the new release candidate
Security related
Unit/integration testing
This won't be fixed
No labels
Milestone
No items
No Milestone
Projects
Clear projects
No projects
Assignees
3wordchant
aadil (Aadil Ayub)
abra-bot (Abra Bot)
ammaratef45
amras (Sarma)
Apfelwurm
BornDeleuze
Brooke
carla
cas (Cassowary)
coopcloud
cyrnel
decentral1se (d1)
dede
devydave
fauno (fauno)
iexos
jade (Jade Ambrose)
jjsfunhouse
jmakdah2 (Jackie Makdah)
joe-irving (Joe Irving)
kawaiipunk (KawaiiPunk)
knoflook
kolaente
lambdabundesverband
linnealovespie (April)
moosemower
moritz
notplants
oxaliq (sorrel)
p4u1
pharaohgraphy (Andrew 🐦🔥❤️🔥✴️)
renovate-bot (Comrade Renovate Bot)
ripclap
simon
sixsmith (Sixsmith)
stevensting
trav (Trav Fryer)
val (val (he/him))
yksflip
Clear assignees
No Assignees
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: toolshed/abra#347
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
As planned with @3wordchant, optimise for local developer workflow first and patch
abrato support a~/.abra_testdirectory. This can be configured withABRA_TEST=.... Maybe you had a thought on the naming of this var @3wordchant? This is working well so far and I even caught a bug already, which makes me feel like it's the way to go. With a dedicated test server setup later on, I think we could get a solid test coverage forabrawith this. Lemme know what you think folks! Kept the diff small so it's easy to review / grok before moving ahead.@@ -0,0 +10,4 @@_build_kadabra() {if [[ ! -e "$ROOT/kadabra" ]]; thencd "$ROOT" && make build-devOops, that's wrong, Need a dedicated
kadabramakefile target. TODO 🤓@@ -17,1 +17,3 @@var ABRA_DIR = os.ExpandEnv("$HOME/.abra")// getBaseDir retrieves the Abra base directory.func getBaseDir() string {home := os.ExpandEnv("$HOME/.abra")What about making the env var
ABRA_DIR, and defaulting to$HOME/.abra? then for testsABRA_DIR=$HOME/.abra_test, and folks could also choose to put the directory elsewhere for homedir-neatness reasons, or in the case of an immutable home dir.