Skip to content

Commit 3bc729c

Browse files
committed
Add source URL comments to testing assets
This will make it easier for the maintainers to sync fixes and improvements in either direction between the upstream "template" assets and their installation in this repository.
1 parent fd35878 commit 3bc729c

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

Taskfile.yml

+2
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ tasks:
6565
- go generate ./...
6666
- task: go:format
6767

68+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-task/Taskfile.yml
6869
go:test:
6970
desc: Run unit tests
7071
cmds:
@@ -77,6 +78,7 @@ tasks:
7778
-coverprofile=coverage_unit.txt \
7879
{{default .DEFAULT_GO_PACKAGES .GO_PACKAGES}}
7980
81+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-go-integration-task/Taskfile.yml
8082
go:test-integration:
8183
desc: Run integration tests
8284
deps:

tests/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Source:
2+
# https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-python/__init__.py
13
# Copyright 2020 ARDUINO SA(http: // www.arduino.cc/)
24
#
35
# This software is released under the GNU General Public License version 3,

tests/pytest.ini

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Source: https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-python/pytest.ini
12
[pytest]
23
filterwarnings =
34
error

tests/test_all.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Source:
2+
# https://github.com/arduino/tooling-project-assets/blob/main/workflow-templates/assets/test-integration/test_all.py
13
# Copyright 2020 ARDUINO SA(http: // www.arduino.cc/)
24
#
35
# This software is released under the GNU General Public License version 3,

0 commit comments

Comments
 (0)