tison

Results 962 comments of tison

@est31 I build a simple workflow for running cargo-udeps in GitHub Actions. It wouldn't have to build a dedicated action IMO. https://github.com/engula/engula/runs/4332111979?check_suite_focus=true However, installing cargo-udeps takes about 5 minutes. Could...

> Reviving this issue. Presumably it should be possible to run suite tests in parallel. > > The problem with parallelism here is that the suite members used in tests...

```go func (s *mySuiteA) TestA2() { // test case A t := s.T() t.Parallel() assert.Equal(t, 3, 1) } ``` cache the `*testing.T` pointer can solve the problem. This issue is...

> ```go > func (s *mySuiteA) TestA2() { // test case A > t := s.T() > t.Parallel() > assert.Equal(t, 3, 1) > } > ``` > > cache the...

Then I'd suggest we pass the inner T if the test method meet the signature, i.e., ```go func (s *mySuite) TestT(t *testing.T) ```

How to reproduce this problem, is there a gist? I cannot reproduce by ```go package main import ( "testing" "time" "github.com/stretchr/testify/suite" ) type ExampleTestSuite struct { suite.Suite } func TestExampleTestSuite(t...

FYI testify `Contains` on Map type validates by map keys, not entries.

I think https://github.com/intellij-rust/intellij-rust/issues/8221 could be part of this tracking issue.

@BewareMyPower I think the quote issue is introduced by zsh syntax. Here is a pull request to adapt the case #16851