File size: 190 Bytes
3d3d712
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# Navigate to the root directory of your project
cd "$(dirname "$0")"/..

# Set PYTHONPATH for this session only
export PYTHONPATH=$(pwd):$PYTHONPATH

# Run pytest
pytest "$@"