Skip to content
New issue

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

feat: Add IntelliJ IDEA Run Configurations #8

Merged
merged 8 commits into from
Apr 22, 2022
10 changes: 10 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations/Load_Modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations/Run_All_Tests.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations/Start_Testing_Environment.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion startTestingEnv
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ fi

if [[ $wait = "true" ]]
then
echo "Test environment started! Leave this script running while running tests."
# we wait for user to end the session
while [[ true ]]
do
echo "Running test env"
echo "Test environment running..."
sleep 2
done
else
echo "Running all tests..."
# ../ because the tests are run relative to the project's folder.
./gradlew test
fi