summaryrefslogtreecommitdiff
path: root/tox.ini
Commit message (Collapse)AuthorAgeFilesLines
* Test under py39Tim Burke2021-03-301-1/+1
| | | | Change-Id: Ic6a51675dbf1c4c7a7540d9a0d80ee33cb064b80
* Move liberasurecode-git behavior into all tox envs with compilelibs markerTim Burke2020-09-241-4/+3
| | | | | | | | | | | | This should let us use that to test against master libec in the gate, rather than relying on legacy job cruft. It may complicate cross-project dependencies, but I don't know that we did that much anyways. Add a job to test against master libec on centos8, as well. Change-Id: I33553d9a3432d97a28e4ea685ffc7bc4fb92a340
* Update tox default env list; add py37 jobTim Burke2019-02-261-1/+1
| | | | Change-Id: Id7807e17c6628124b98bd6a371bf6ac2ebbbd9cc
* Merge "Switch from pep8 to flake8 for linting"Zuul2018-03-131-2/+2
|\
| * Switch from pep8 to flake8 for lintingTim Burke2017-05-031-2/+2
| | | | | | | | | | | | | | ...and clean up the unused variables, unused imports, and inconsistent spacing that flake8 revealed. Change-Id: I3ae1e834f01f477be88dfc48de954eeaf19e43cf
* | Install jerasure from source when testing liberasure-masterTim Burke2017-09-131-0/+2
| | | | | | | | Change-Id: I5e88c7268641b6bcad019748544ffd2694cee50f
* | Install isa-l from source when testing liberasure-masterTim Burke2017-09-131-0/+1
| | | | | | | | Change-Id: I93506b63f2a4f86358d5ffbca8b7360e797729d1
* | Merge "Add tox environment to test against liberasurecode master"Jenkins2017-09-131-0/+7
|\ \ | |/ |/|
| * Add tox environment to test against liberasurecode masterTim Burke2017-05-031-0/+7
| | | | | | | | | | | | | | | | | | | | Go clone liberasurecode to our tox env directory, install it there, and tell setuptools/distutils to use it. To checkout something *other* than tip-of-master, set LIBERASURECODE_REF to the remote ref you're interested in. Change-Id: I13417e058a340ba0d4a79080f0e05dea1be193fc
* | Merge "Don't let nose play with our PYTHONPATH."Jenkins2017-03-021-1/+1
|\ \
| * | Don't let nose play with our PYTHONPATH.Clay Gerrard2017-02-281-1/+1
| |/ | | | | | | | | | | Closes-Bug: #1668447 Change-Id: I5a9844bad285d992b6a3a01a7fd95634d02960cd
* | Use py35 tox environment by defaultClay Gerrard2017-02-281-1/+1
|/ | | | Change-Id: Ieb54b0b38f04a3502cf08206f1ce036fe2cb671c
* Add -v option to let us know which tests are passed in the gateKota Tsuyuzaki2016-12-011-1/+1
| | | | Change-Id: If8bda742ad106da867b7cb282a6a6a2939269c51
* Cleanup lint errors in test suiteClay Gerrard2016-11-291-1/+1
| | | | | | Add some more linting to test modules and clean 'em up Change-Id: I8bece8e1e2971ef508c058220dd2646ae880fe35
* Add tox/requirements settings to pass gate jobKota Tsuyuzaki2016-08-121-2/+8
| | | | | | | | | | Plus, we need liberasurecode version handling for a few place because some tests/engine itself is broken with a lack of backword compatibility. Closes-Bug: #1586220 Change-Id: I72adaefa10875a73e3e5304eb40fe5d9f6d2598a
* Add ChangLog. README updates for 1.0.8.v1.0.8proposed-1.0.8Tushar Gohad2015-08-031-1/+7
|
* Revert "Add py27,py34 tox testenvs/Custom pep8 env"Tushar Gohad2015-07-281-15/+2
| | | | This reverts commit 28d9e16f10a87893813583cba5ca1da08ba83507.
* Add py27,py34 tox testenvs/Custom pep8 envTushar Gohad2015-07-281-2/+15
|
* Add tox.iniVictor Stinner2015-07-211-0/+8
tox allows to easily run tests on Python 2 and Python 3. It creates a virtual environment and install pyeclib in each venv. Run "tox" to test both Python version, or "tox -e py27" to only test Python 2.7.