Skip to content
This repository has been archived by the owner on Nov 4, 2023. It is now read-only.

Commit

Permalink
ENH: Tests can be run as script
Browse files Browse the repository at this point in the history
The tests can now be run individually as a script.
  • Loading branch information
hoechenberger committed Jan 26, 2015
1 parent a3c3a99 commit 84522d9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pphelper/tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,8 @@ def test_get_max_from_list():
result = get_max_from_list(data)

assert result == result_expected


if __name__=='__main__':
import pytest
pytest.main()

0 comments on commit 84522d9

Please sign in to comment.