File tree 7 files changed +21
-29
lines changed
7 files changed +21
-29
lines changed Original file line number Diff line number Diff line change 3
3
_ Please make sure to review and check all of these items:_
4
4
5
5
- [ ] Does ` $ tox ` pass with this change (including linting)?
6
- - [ ] Does travis tests pass with this change (enable it first in your forked repo and wait for the travis build to finish)?
6
+ - [ ] Do the CI tests pass with this change (enable it first in your forked repo and wait for the github action build to finish)?
7
7
- [ ] Is the new or changed code fully tested?
8
8
- [ ] Is a documentation update included (if this change modifies existing APIs, or introduces new ones)?
9
9
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+ pull_request :
7
+ branches : [ master ]
8
+
9
+ jobs :
10
+ integration :
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v2
14
+ - name : test
15
+ run : make test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3
3
4
4
The Python interface to the Redis key-value store.
5
5
6
- .. image :: https://secure.travis-ci.org /andymccurdy/redis-py.svg?branch=master
7
- :target: https://travis-ci.org /andymccurdy/redis-py
6
+ .. image :: https://github.com /andymccurdy/redis-py/workflows/CI/badge .svg?branch=master
7
+ :target: https://github.com /andymccurdy/redis-py/actions?query=workflow%3ACI+branch%3Amaster
8
8
.. image :: https://readthedocs.org/projects/redis-py/badge/?version=stable&style=flat
9
9
:target: https://redis-py.readthedocs.io/en/stable/
10
10
.. image :: https://badge.fury.io/py/redis.svg
Original file line number Diff line number Diff line change @@ -50,15 +50,7 @@ services:
50
50
CODECOV_TOKEN :
51
51
CODECOV_URL :
52
52
SHIPPABLE :
53
- TRAVIS :
54
- TRAVIS_BRANCH :
55
- TRAVIS_COMMIT :
56
- TRAVIS_JOB_ID :
57
- TRAVIS_JOB_NUMBER :
58
- TRAVIS_OS_NAME :
59
- TRAVIS_PULL_REQUEST :
60
- TRAVIS_REPO_SLUG :
61
- TRAVIS_TAG :
53
+ GITHUB_ACTIONS :
62
54
VCS_BRANCH_NAME :
63
55
VCS_COMMIT_ID :
64
56
VCS_PULL_REQUEST :
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ REDIS_MASTER="${REDIS_MASTER_HOST}":"${REDIS_MASTER_PORT}"
9
9
echo " Testing against Redis Server: ${REDIS_MASTER} "
10
10
11
11
# skip the "codecov" env if not running on Travis
12
- if [ -z ${TRAVIS-} ] ; then
12
+ if [ " ${GITHUB_ACTIONS} " = true ] ; then
13
13
echo " Skipping codecov"
14
14
export TOX_SKIP_ENV=" codecov"
15
15
fi
Original file line number Diff line number Diff line change @@ -43,8 +43,7 @@ passenv =
43
43
CI_*
44
44
CODECOV_*
45
45
SHIPPABLE
46
- TRAVIS
47
- TRAVIS_*
46
+ GITHUB_*
48
47
VCS_*
49
48
50
49
[testenv:covreport]
You can’t perform that action at this time.
0 commit comments