Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 001125f

Browse files
committedMar 3, 2021
Remove references to appveyor and coveralls
1 parent 0de1fff commit 001125f

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed
 

‎.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ TODO:
55
* [ ] Add docstrings and API docs for any new/modified user-facing classes and functions
66
* [ ] New/modified features documented in docs/tutorial.rst
77
* [ ] Changes documented in docs/release.rst
8-
* [ ] AppVeyor and Travis CI passes
9-
* [ ] Test coverage is 100% (Coveralls passes)
8+
* [ ] GitHub Actions have all passed
9+
* [ ] Test coverage is 100% (Codecov passes)

‎docs/contributing.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,11 @@ server locally and set the environment variable ``ZARR_TEST_MONGO=1``.
169169
To run the Redis storage tests, run a Redis server locally on port
170170
6379 and set the environment variable ``ZARR_TEST_REDIS=1``.
171171

172-
All tests are automatically run via Travis (Linux) and AppVeyor
173-
(Windows) continuous integration services for every pull
174-
request. Tests must pass under both Travis and Appveyor before code
175-
can be accepted. Test coverage is also collected automatically via the
176-
Coveralls service, and total coverage over all builds must be 100%
177-
(although individual builds may be lower due to Python 2/3 or other
178-
differences).
172+
All tests are automatically run via GitHub Actions for every pull
173+
request and must pass before code can be accepted. Test coverage is
174+
also collected automatically via the Codecov service, and total
175+
coverage over all builds must be 100% (although individual builds
176+
may be lower due to Python 2/3 or other differences).
179177

180178
Code standards
181179
~~~~~~~~~~~~~~
@@ -196,8 +194,8 @@ and produce a coverage report. This should be 100% before code can be accepted i
196194
main code base.
197195

198196
When submitting a pull request, coverage will also be collected across all supported
199-
Python versions via the Coveralls service, and will be reported back within the pull
200-
request. Coveralls coverage must also be 100% before code can be accepted.
197+
Python versions via the Codecov service, and will be reported back within the pull
198+
request. Codecov coverage must also be 100% before code can be accepted.
201199

202200
Documentation
203201
~~~~~~~~~~~~~
@@ -239,8 +237,8 @@ Pull requests submitted by an external contributor should be reviewed and approv
239237
one core developers before being merged. Ideally, pull requests submitted by a core developer
240238
should be reviewed and approved by at least one other core developers before being merged.
241239

242-
Pull requests should not be merged until all CI checks have passed (Travis, AppVeyor,
243-
Coveralls) against code that has had the latest master merged in.
240+
Pull requests should not be merged until all CI checks have passed (GitHub Actions
241+
Codecov) against code that has had the latest master merged in.
244242

245243
Compatibility and versioning policies
246244
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

‎requirements_dev_optional.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ lmdb==0.97; sys_platform != 'win32'
55
ipytree==0.1.3
66
# optional library requirements for services
77
# don't let pyup change pinning for azure-storage-blob, need to pin to older
8-
# version to get compatibility with azure storage emulator on appveyor
8+
# version to get compatibility with azure storage emulator on appveyor (FIXME)
99
azure-storage-blob==2.0.1 # pyup: ignore
1010
redis==3.3.8
1111
pymongo==3.9.0

0 commit comments

Comments
 (0)
Please sign in to comment.