Skip to content

Commit a37f100

Browse files
committed
Remove AppVeyor recipes and update docs
1 parent 9fa0973 commit a37f100

File tree

5 files changed

+36
-63
lines changed

5 files changed

+36
-63
lines changed

tools/make/lib/test-ci/Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020

2121
ifeq ($(CI_SERVICE), travis)
2222
include $(TOOLS_MAKE_LIB_DIR)/test-ci/travis.mk
23-
else
24-
ifeq ($(CI_SERVICE), appveyor)
25-
include $(TOOLS_MAKE_LIB_DIR)/test-ci/appveyor.mk
26-
endif
2723
endif
2824

2925

30-
# TARGETS #
26+
# RULES #
3127

32-
# Run CI tests.
28+
#/
29+
# Runs continuous integration tests, which may include unit tests, browser tests, and/or UI tests.
3330
#
34-
# This target runs continuous integration tests, which may include unit tests, browser tests, and/or UI tests.
35-
31+
# @private
32+
#
33+
# @example
34+
# make test-ci
35+
#/
3636
# test-ci: test test-browsers
3737
test-ci: test
3838

tools/make/lib/test-ci/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<!--
2+
3+
@license Apache-2.0
4+
5+
Copyright (c) 2021 The Stdlib Authors.
6+
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
19+
-->
20+
121
# CI Tests
222

323
> Continuous integration test recipes.

tools/make/lib/test-ci/appveyor.mk

Lines changed: 0 additions & 21 deletions
This file was deleted.

tools/make/lib/test-ci/appveyor_browsers.mk

Lines changed: 0 additions & 30 deletions
This file was deleted.

tools/make/lib/test-ci/travis_browsers.mk

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,16 @@
2222
TRAVIS_HEADLESS_BROWSER ?= xvfb-run
2323

2424

25-
# TARGETS #
25+
# RULES #
2626

27-
# Run browser tests.
27+
#/
28+
# Runs browser tests using a headless browser on Travis CI.
2829
#
29-
# This target runs browser tests using a headless browser on Travis CI.
30-
30+
# @private
31+
#
32+
# @example
33+
# make test-browsers-travis
34+
#/
3135
test-browsers-travis: $(NODE_MODULES)
3236
$(QUIET) $(TRAVIS_HEADLESS_BROWSER) make -f $(this_file) test-browsers
3337

0 commit comments

Comments
 (0)