Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 502 Bytes

File metadata and controls

25 lines (17 loc) · 502 Bytes

OASM SDK for Python Test Project

This is a test project to demonstrate the structure and documentation of a software project.

Install the package in development mode:

# Create a virtual environment
python -m venv venv

# Activate the virtual environment for Windows
venv\Scripts\activate

# Activate the virtual environment for Linux/Mac
source venv/bin/activate

# Install the package in development mode
pip install -e .

Run the tests:

python -m pytest ./tests