Skip to content

Latest commit

 

History

History
 
 

tests

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Asteroid tests

Running the tests locally

git clone https://github.com/mpariente/asteroid
cd asteroid

# install module locally
pip install -e .

# install dev deps
pip install -r requirements.txt

# run tests
py.test -v

Running coverage

From asteroid parent directory

# Install coverage
pip install coverage
# generate coverage
coverage run --source asteroid -m py.test tests -v --doctest-modules
# print coverage stats
coverage report -m