Skip to content

Commit 43888f1

Browse files
authored
Merge pull request #1 from comnoco/rename
Update repository URLs and package names
2 parents 4409f94 + a05b3b9 commit 43888f1

File tree

9 files changed

+23
-22
lines changed

9 files changed

+23
-22
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ARG VERSION
77
FROM golang:1.18.1-alpine as builder
88
RUN apk add --no-cache git gcc musl-dev make
99
ENV GO111MODULE=on
10-
WORKDIR /go/src/moul.io/testman
10+
WORKDIR /go/src/github.com/comnoco/testman/v2
1111
COPY go.* ./
1212
RUN go mod download
1313
COPY . ./
@@ -18,7 +18,7 @@ FROM alpine:3.16.0
1818
LABEL org.label-schema.build-date=$BUILD_DATE \
1919
org.label-schema.name="testman" \
2020
org.label-schema.description="" \
21-
org.label-schema.url="https://moul.io/testman/" \
21+
org.label-schema.url="https://github.com/comnoco/testman/v2/" \
2222
org.label-schema.vcs-ref=$VCS_REF \
2323
org.label-schema.vcs-url="https://github.com/moul/testman" \
2424
org.label-schema.vendor="Manfred Touron" \

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
GOPKG ?= moul.io/testman
1+
GOPKG ?= github.com/comnoco/testman/v2
22
DOCKER_IMAGE ?= moul/testman
33
GOMOD_DIRS ?= .
44
GOBINS ?= .

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
😎 `go test` wrapper for advanced testing workflows in Go
44

5-
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/moul.io/testman)
5+
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/comnoco/testman/v2)
66
[![License](https://img.shields.io/badge/license-Apache--2.0%20%2F%20MIT-%2397ca00.svg)](https://github.com/moul/testman/blob/master/COPYRIGHT)
77
[![GitHub release](https://img.shields.io/github/release/moul/testman.svg)](https://github.com/moul/testman/releases)
88
[![Docker Metrics](https://images.microbadger.com/badges/image/moul/testman.svg)](https://microbadger.com/images/moul/testman)
@@ -13,7 +13,7 @@
1313
[![PR](https://github.com/moul/testman/workflows/PR/badge.svg)](https://github.com/moul/testman/actions?query=workflow%3APR)
1414
[![GolangCI](https://golangci.com/badges/github.com/moul/testman.svg)](https://golangci.com/r/github.com/moul/testman)
1515
[![codecov](https://codecov.io/gh/moul/testman/branch/master/graph/badge.svg)](https://codecov.io/gh/moul/testman)
16-
[![Go Report Card](https://goreportcard.com/badge/moul.io/testman)](https://goreportcard.com/report/moul.io/testman)
16+
[![Go Report Card](https://goreportcard.com/badge/github.com/comnoco/testman/v2)](https://goreportcard.com/report/github.com/comnoco/testman/v2)
1717
[![CodeFactor](https://www.codefactor.io/repository/github/moul/testman/badge)](https://www.codefactor.io/repository/github/moul/testman)
1818

1919

@@ -79,12 +79,12 @@ FLAGS
7979
### Using go
8080

8181
```console
82-
$ go get -u moul.io/testman
82+
$ go get -u github.com/comnoco/testman/v2
8383
```
8484

8585
### Releases
8686

87-
See https://github.com/moul/testman/releases
87+
See https://github.com/comnoco/testman/releases
8888

8989
## Contribute
9090

doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@
2727
// |/ | | \ \ / / ' \/ _ \/ // / / |
2828
// || | | | | | /_/_/_/\___/\_,_/_/ |
2929
// +--------------------------------------------------------------+
30-
package main // import "moul.io/testman"
30+
package main // import "github.com/comnoco/testman/v2"

examples/go.mod

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ok moul.io/testman/examples/testpkg.TestStableAlwaysSucceed
2-
ok moul.io/testman/examples/testpkg.TestUnstableMaySucceed
3-
FAIL moul.io/testman/examples/testpkg.TestBrokenAlwaysFailing [test error: exit status 1]
4-
ok moul.io/testman/examples/testpkg.ExampleAlwaysSucceed
1+
ok github.com/comnoco/testman/v2/examples/testpkg.TestStableAlwaysSucceed
2+
ok github.com/comnoco/testman/v2/examples/testpkg.TestUnstableMaySucceed
3+
FAIL github.com/comnoco/testman/v2/examples/testpkg.TestBrokenAlwaysFailing [test error: exit status 1]
4+
ok github.com/comnoco/testman/v2/examples/testpkg.ExampleAlwaysSucceed
55
EXIT CODE: 1

go.mod

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ func ExampleList_examples() {
2222
err := run([]string{"testman", "list", "./..."})
2323
checkErr(err)
2424
// Output:
25-
// moul.io/testman/examples/testpkg
25+
// github.com/comnoco/testman/v2/examples/testpkg
2626
// TestStableAlwaysSucceed
2727
// TestUnstableMaySucceed
2828
// TestBrokenAlwaysFailing
@@ -35,7 +35,7 @@ func ExampleList() {
3535
panic(err)
3636
}
3737
// Output:
38-
// moul.io/testman
38+
// github.com/comnoco/testman/v2
3939
// TestRun
4040
// ExampleList_examples
4141
// ExampleList

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"_comment": "this project is not a node.js one, package.json is just used to define some metadata",
3-
"name": "@moul.io/testman",
4-
"version": "0.0.1",
3+
"name": "@github.com/comnoco/testman/v2",
4+
"version": "2.0.4",
55
"author": "Manfred Touron <[email protected]> (https://manfred.life)",
66
"contributors": [
7-
"Manfred Touron <[email protected]> (https://manfred.life)"
7+
"Manfred Touron <[email protected]> (https://manfred.life)",
8+
"Tom O'Connor <[email protected]> (https://comnoco.com)"
89
],
910
"license": "(Apache-2.0 OR MIT)",
1011
"scripts": {
@@ -14,8 +15,8 @@
1415
},
1516
"repository": {
1617
"type": "git",
17-
"url": "https://github.com/moul/testman.git"
18+
"url": "https://github.com/comnoco/testman.git"
1819
},
19-
"bugs": "https://github.com/moul/testman/issues",
20-
"homepage": "https://moul.io/testman"
20+
"bugs": "https://github.com/comnoco/testman/issues",
21+
"homepage": "https://github.com/comnoco/testman/"
2122
}

0 commit comments

Comments
 (0)