From 9b84bb10db437a61e98991ddf015944cec9fc500 Mon Sep 17 00:00:00 2001 From: blackbeard420 Date: Thu, 6 Mar 2025 22:31:57 -0500 Subject: [PATCH] removed dead test. removed drone.yaml. migrated to gitea actions --- .drone.yml | 10 ---------- .gitea/workflows/test.yaml | 4 ++-- irc_test.go | 5 ----- 3 files changed, 2 insertions(+), 17 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 5faf3aa..0000000 --- a/.drone.yml +++ /dev/null @@ -1,10 +0,0 @@ -kind: pipeline -type: docker -name: test - -steps: -- name: test - image: golang - commands: - - go test -v - - go build \ No newline at end of file diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 27654cd..b12f554 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -3,7 +3,7 @@ run-name: ${{ gitea.actor }} build test on: [push] jobs: - Checkout: + Build: runs-on: ubuntu-latest steps: - name: Check out repository code @@ -14,4 +14,4 @@ jobs: go-version: '>=1.23' - run: go version - run: go build - - run: go test \ No newline at end of file + - run: go test -v \ No newline at end of file diff --git a/irc_test.go b/irc_test.go index d4ba957..e440226 100644 --- a/irc_test.go +++ b/irc_test.go @@ -2,7 +2,6 @@ package irc import ( "fmt" - "log" "strconv" "strings" "testing" @@ -134,7 +133,3 @@ func TestGetServerInfo(t *testing.T) { con.Run() } - -func TestParser(t *testing.T) { - log.Printf("testing %s\n", t.Name()) -}