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: K6 test result capture #199

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .devcontainer/post-create.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,4 @@ if [[ $input == "Y" || $input == "y" ]]; then
else
echo "OK, skipping. Run 'bash .devcontainer/post-create.sh' again if you change your mind."
fi
echo " >>> Install k6 for load testing? [y/N]:"
read input
if [[ $input == "Y" || $input == "y" ]]; then
echo "Installing k6..."
# https://grafana.com/docs/k6/latest/set-up/install-k6/
sudo gpg -k
sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
sudo apt-get update
sudo apt-get install k6
echo "k6 installed. Run 'k6 --version' to verify."
else
echo "OK, skipping. Run 'bash .devcontainer/post-create.sh' again if you change your mind."
fi
echo " >>> SETUP COMPLETE! You can now run the server with 'python django/manage.py runserver'."
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,6 @@ test_media

# Ignore all ~* files
~*

# Ignore load testing results
#load_testing/.results/*
77 changes: 0 additions & 77 deletions build_and_push_image.ps1

This file was deleted.

40 changes: 0 additions & 40 deletions load_testing/k6_script.js

This file was deleted.

Loading