8 lines
138 B
Bash
Executable File
8 lines
138 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Activate virtual environment
|
|
. venv/bin/activate
|
|
|
|
# Run the test script
|
|
echo "Testing HTTP server..."
|
|
python test_server.py |