Initial commit

This commit is contained in:
franz.germann1 2024-10-24 09:16:33 +02:00
parent d71f9ecd85
commit 7db732159a
2 changed files with 2 additions and 4 deletions

View file

@ -116,12 +116,12 @@ spec:
- name: unit-tests
container:
image: golang:latest
image: golang:1.23.2
command: [sh, -c]
args:
- |
cd /shared-data/repo && \
go test ./fib_test.go -v > test-results.txt; \
go test ./... -v > test-results.txt; \
cat test-results.txt
volumeMounts:
- name: shared-data

View file

@ -26,7 +26,6 @@ func BenchmarkFibonacciBig_20(b *testing.B) {
}
}
/*
func TestFibonacci(t *testing.T) {
data := []struct {
n uint
@ -56,4 +55,3 @@ func TestFibonacciBig(t *testing.T) {
}
}
}
*/