https://github.com/gdanezis/bplib
Raw File
Tip revision: a50c05dbb83e09a54cfb0a49ea42f4d31ae0fd37 authored by George Danezis on 27 May 2019, 17:46:41 UTC
Layer of compatibility for OpenSSL 1.0.x
Tip revision: a50c05d
tox.ini
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.

[tox]
envlist = py27, py36

[testenv]
deps = 
	pytest

commands =
    python setup.py build_ext --inplace 
    python setup.py install
    pytest --doctest-modules bplib
    
back to top