We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need documentation for running Foxx unit tests.
The text was updated successfully, but these errors were encountered:
docker run -d -e ARANGO_ROOT_PASSWORD="<password>" -p 8529:8529 arangodb/arangodb:3.12.4
Password needs to be consistent with what is in the config/datafed.sh for the database parameter.
When compiling with Cmake you will need to make sure that the FOXX tests enable flag is turned on
cmake -S. -B build -DENABLE_FOXX_TESTS=ON -DBUILD_CORE_SERVER=OFF -DBUILD_COMMON=OFF -DBUILD_WEB_SERVER=OFF cmake --build build cmake --build build --target install
Sorry, something went wrong.
For building the tests:
docker build --build-arg DEPENDENCIES=datafed-dependencies -f ./docker/Dockerfile.foxx .
For running the tests:
docker run -e DATAFED_DATABASE_PASSWORD="butterscotch" -e DATAFED_ZEROMQ_SYSTEM_SECRET="butter" -e INSTALL_FOXX=ON -e ENABLE_FOXX_TESTS=TRUE --network=host datafed-foxx:latest
Documentation should be added in DataFed/docs/dev for this.
Successfully merging a pull request may close this issue.
Description
We need documentation for running Foxx unit tests.
The text was updated successfully, but these errors were encountered: