#!/bin/bash # Run tests locally, skipping Bluesky tests that require external API credentials echo "Running tests locally (skipping Bluesky tests)..." echo "================================================" # Run Django tests excluding the Bluesky test file python3 manage.py test \ ivatar.ivataraccount.test_auth \ ivatar.ivataraccount.test_views \ ivatar.test_auxiliary \ ivatar.test_file_security \ ivatar.test_static_pages \ ivatar.test_utils \ ivatar.test_views \ ivatar.test_views_stats \ ivatar.tools.test_views \ ivatar.test_wsgi \ -v2 echo "" echo "To run all tests including Bluesky (requires API credentials):" echo "python3 manage.py test -v2" echo "" echo "To run only Bluesky tests:" echo "python3 manage.py test ivatar.ivataraccount.test_views_bluesky -v2"