# DrivingGym **Repository Path**: Morphlng/DrivingGym ## Basic Information - **Project Name**: DrivingGym - **Description**: Modularized driving environment for Multi-Agent Reinforcement Learning study - **Primary Language**: Python - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-03-17 - **Last Updated**: 2025-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # DrivingGym Reinforcement Learning Environment for Autonomous Driving Study ## Testing You should always add a test for any new feature/module. You can also test if the code is working as expected by running our tests. 1. Install testing dependencies ```bash pip install -e .[test] ``` 2. Run tests ```bash pytest --cov=driving_gym --cov-report html:coverage_result tests ``` > Note: Some of the tests requires a running Carla server. You may ignore these tests by running with options `pytest --ignore=tests/carla`