Re: [go-nuts] Tests skipping

2020-03-23 Thread Brian Candler
On Monday, 23 March 2020 06:37:45 UTC, Shane H wrote: > > The output of the go test is > TestQuoteDate (skipping) // or words to that effect > > Could you copy-paste the exact, verbatim output of the test run when it does this? With a few lines either side for context? -- You received this mess

Re: [go-nuts] Tests skipping

2020-03-23 Thread Brian Hatfield
I noticed that the `t.Run` call in the sample code provided is `t,Run` instead (note the comma). I'm not sure how that compiles, but it might be worth checking on that. On Mon, Mar 23, 2020 at 3:16 PM Ian Lance Taylor wrote: > On Sun, Mar 22, 2020 at 11:38 PM Shane H wrote: > > > > On Monday, M

Re: [go-nuts] Tests skipping

2020-03-23 Thread Ian Lance Taylor
On Sun, Mar 22, 2020 at 11:38 PM Shane H wrote: > > On Monday, March 23, 2020 at 2:49:46 PM UTC+11, Ian Lance Taylor wrote: >> >> On Sun, Mar 22, 2020 at 7:10 PM Shane H wrote: >> > >> > I'm a lot confused by the behaviour of some tests I have at the moment, >> > they're skipping.. when there's

Re: [go-nuts] Tests skipping

2020-03-22 Thread Shane H
On Monday, March 23, 2020 at 2:49:46 PM UTC+11, Ian Lance Taylor wrote: > > On Sun, Mar 22, 2020 at 7:10 PM Shane H > > wrote: > > > > I'm a lot confused by the behaviour of some tests I have at the moment, > they're skipping.. when there's no skip or timeout or... anything that I > can see

Re: [go-nuts] Tests skipping

2020-03-22 Thread Ian Lance Taylor
On Sun, Mar 22, 2020 at 7:10 PM Shane H wrote: > > I'm a lot confused by the behaviour of some tests I have at the moment, > they're skipping.. when there's no skip or timeout or... anything that I can > see > > I know this is going to be difficult because I don't have code I can paste to > sho

[go-nuts] Tests skipping

2020-03-22 Thread Shane H
I'm a lot confused by the behaviour of some tests I have at the moment, they're skipping.. when there's no skip or timeout or... anything that I can see I know this is going to be difficult because I don't have code I can paste to show what's happening I'm using go1.13.9, but this behaviour wa