summaryrefslogtreecommitdiffstats
path: root/tox.ini
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2020-02-15 13:49:10 -0500
committerMike Frysinger <vapier@google.com>2020-02-16 05:12:33 +0000
commitb57e633433eaf32f9c2e3f398937f99a5319869c (patch)
treebb2e3d2ec10d58e64af8cdd34e904a5881ff6bb2 /tox.ini
parentd21638424cc92d8fa00e7f440300c92d8532f5a8 (diff)
downloadgit-repo-b57e633433eaf32f9c2e3f398937f99a5319869c.tar.gz
github: enable github actions for postsubmit testing
This gives us a bit of feedback by running our testsuite on Linux, macOS, and Windows platforms. While Linux & macOS are passing, Windows fails some of them. We can figure that out later. This is better than what we have now which is manual one-offs. Change-Id: I9d2d644be97ec76645db0bc15739e7679310a647 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/255314 Reviewed-by: David Pursehouse <dpursehouse@collab.net> Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini7
1 files changed, 7 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini
index 1a9642a3..e6d38e76 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,6 +17,13 @@
17[tox] 17[tox]
18envlist = py27, py36, py37, py38 18envlist = py27, py36, py37, py38
19 19
20[gh-actions]
21python =
22 2.7: py27
23 3.6: py36
24 3.7: py37
25 3.8: py38
26
20[testenv] 27[testenv]
21deps = pytest 28deps = pytest
22commands = {envpython} run_tests 29commands = {envpython} run_tests