openenv-rl-environment / CONTRIBUTING.md
Sid8421's picture
chore: prepare Round-1 OpenEnv submission (validator, evaluator, tests, CI, docs)
aa4f7bc
## Contributing
Run tests:
```bash
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -e .
pip install pytest
pytest -q
```
To run the API locally:
```bash
uvicorn server.app:app --host 0.0.0.0 --port 7860
```
Please open PRs against `main`. Add tests for new behavior and keep changes small and focused.