Skip to content

Latest commit

 

History

History
56 lines (41 loc) · 1.06 KB

README.md

File metadata and controls

56 lines (41 loc) · 1.06 KB

Running Tests

Prerequisites

Running tests require the following dependencies to be installed:

Running all tests

To run style checks and unit tests for both python 2 and python 3:

make test

Running only style checks

The following commands run flake8 style checks on the /benchmarks directory.

To run style checks using python 2:

make lint2

To run style checks using python 3:

make lint3

To run style checks using both python 2 and python 3:

make lint

Running only unit tests

Unit tests can be run using the commands below.

To run unit tests using python 2:

make unit_test2

To run unit tests using python 3:

make unit_test3

To run unit tests using python 2 and python 3:

make unit_test