13 lines
276 B
Bash
Executable File
13 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install dependencies and deploy infrastructure
|
|
npm install -g aws-cdk
|
|
python3 -m pip install -r requirements.txt
|
|
|
|
# Install and configure pre-commit hooks
|
|
pre-commit install
|
|
pre-commit install-hooks
|
|
pre-commit autoupdate
|
|
|
|
# Verify pytest setup
|
|
python3 -m pytest |