Skip to content

Commit

Permalink
See if line endings are the problem
Browse files Browse the repository at this point in the history
  • Loading branch information
meatballhat committed Jun 25, 2023
1 parent f783427 commit 5ffe913
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.gotmpl text eol=lf
33 changes: 16 additions & 17 deletions docs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import (
"io/fs"
"net/mail"
"os"
"runtime"
"testing"

"github.com/stretchr/testify/require"
Expand Down Expand Up @@ -162,10 +161,10 @@ func TestToMarkdownFull(t *testing.T) {
}

func TestToTabularMarkdown(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skipf("FIXME on windows (?)")
return
}
// if runtime.GOOS == "windows" {
// t.Skipf("FIXME on windows (?)")
// return
// }

app := buildExtendedTestCommand()

Expand Down Expand Up @@ -205,10 +204,10 @@ func TestToTabularMarkdownFailed(t *testing.T) {
}

func TestToTabularToFileBetweenTags(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skipf("FIXME on windows (?)")
return
}
// if runtime.GOOS == "windows" {
// t.Skipf("FIXME on windows (?)")
// return
// }

expectedDocs, fErr := testdata.ReadFile("testdata/expected-tabular-markdown-full.md")

Expand Down Expand Up @@ -353,10 +352,10 @@ func TestToMarkdown(t *testing.T) {
}

func TestToMan(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skipf("FIXME on windows (?)")
return
}
// if runtime.GOOS == "windows" {
// t.Skipf("FIXME on windows (?)")
// return
// }

app := buildExtendedTestCommand()

Expand All @@ -379,10 +378,10 @@ func TestToManParseError(t *testing.T) {
}

func TestToManWithSection(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skipf("FIXME on windows (?)")
return
}
// if runtime.GOOS == "windows" {
// t.Skipf("FIXME on windows (?)")
// return
// }

cmd := buildExtendedTestCommand()

Expand Down

0 comments on commit 5ffe913

Please sign in to comment.