aetherscale

[unmaintained] code for a cloud provider tutorial
Log | Files | Refs | README | LICENSE

tox.ini (280B)


      1 [tox]
      2 envlist = clean,py3,report
      3 
      4 [testenv]
      5 deps =
      6     coverage
      7     pytest
      8 commands =
      9     coverage run --source aetherscale -m pytest
     10 
     11 [testenv:clean]
     12 deps = coverage
     13 skip_install = true
     14 commands = coverage erase
     15 
     16 [testenv:report]
     17 commands =
     18     coverage report
     19     coverage html