File: tox.ini

package info (click to toggle)
psrecord 1.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 176 kB
  • sloc: python: 295; makefile: 12
file content (24 lines) | stat: -rw-r--r-- 487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tox]
envlist =
    py{39,310,311,312}-test{,-psutil56,-psutil57,-psutil58,-psutil59}{,-alldeps}
requires =
    setuptools >= 30.3.0
    pip >= 19.3.1
isolated_build = true

[testenv]
changedir =
    test: .tmp/{envname}
description =
    test: run tests with pytest
deps =
    psutil56: psutil==5.6.*
    psutil57: psutil==5.7.*
    psutil58: psutil==5.8.*
    psutil59: psutil==5.9.*
extras =
    test
    alldeps: plot
commands =
    pip freeze
    pytest --pyargs psrecord {posargs}