Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 580 Bytes

TESTING.md

File metadata and controls

44 lines (28 loc) · 580 Bytes

Testing Pylons

The core tests for pylons are exposed through the Makefile. Tests and the commands to run them are detailed below:

Tests

Unit and integration tests:

make test

To get a quick view of failing tests run:

make test | grep FAIL

To test for race conditions:

make test-race

To generate a coverage report (in cover.html) run:

make test-cover

Simulation Tests

To test using a simulation for non-determinism:

make test-sim-nondeterminism

Benchmarking

make bench