https://github.com/NYUCCL/psiTurk
Revision 27be24226a03813235b5bfdc0d97acdb6af04749 authored by Dave Eargle on 12 May 2021, 02:47:05 UTC, committed by Dave Eargle on 12 May 2021, 02:47:05 UTC
1 parent 9a3e0b5
Raw File
Tip revision: 27be24226a03813235b5bfdc0d97acdb6af04749 authored by Dave Eargle on 12 May 2021, 02:47:05 UTC
typo
Tip revision: 27be242
tox.ini
# tox (https://tox.readthedocs.io/) 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 = py36, py37, py38

[testenv]
deps =
    ciso8601
    pytz
    pytest
    pytest-mock
    pytest-socket
commands =
    pytest {posargs}
back to top