Mike Frysinger | 4997d1c | 2019-12-01 22:47:21 -0500 | [diff] [blame] | 1 | # Copyright 2019 The Android Open Source Project |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
| 15 | # https://tox.readthedocs.io/ |
| 16 | |
| 17 | [tox] |
Peter Kjellerstedt | a3b2edf | 2021-04-15 01:32:40 +0200 | [diff] [blame] | 18 | envlist = py36, py37, py38, py39 |
Mike Frysinger | 4997d1c | 2019-12-01 22:47:21 -0500 | [diff] [blame] | 19 | |
Mike Frysinger | b57e633 | 2020-02-15 13:49:10 -0500 | [diff] [blame] | 20 | [gh-actions] |
| 21 | python = |
Mike Frysinger | b57e633 | 2020-02-15 13:49:10 -0500 | [diff] [blame] | 22 | 3.6: py36 |
| 23 | 3.7: py37 |
| 24 | 3.8: py38 |
Mike Frysinger | beea5de | 2021-03-10 22:31:41 -0500 | [diff] [blame] | 25 | 3.9: py39 |
Mike Frysinger | b57e633 | 2020-02-15 13:49:10 -0500 | [diff] [blame] | 26 | |
Mike Frysinger | 4997d1c | 2019-12-01 22:47:21 -0500 | [diff] [blame] | 27 | [testenv] |
| 28 | deps = pytest |
Mike Frysinger | d216384 | 2020-02-15 13:44:56 -0500 | [diff] [blame] | 29 | commands = {envpython} run_tests |
| 30 | setenv = |
| 31 | GIT_AUTHOR_NAME = Repo test author |
| 32 | GIT_COMMITTER_NAME = Repo test committer |
| 33 | EMAIL = repo@gerrit.nodomain |