feat(tests): add Parallelization where possible (#1823)

* feat(tests): add Parallelization where possible
This commit is contained in:
Kyle Sanderson 2024-11-23 06:16:09 -08:00 committed by GitHub
parent c0882aff84
commit 4cc0f9cc83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 53 additions and 2 deletions

View file

@ -10,6 +10,7 @@ import (
)
func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
t.Parallel()
type fields struct {
TorrentURL string
TorrentName string
@ -165,6 +166,7 @@ func TestIndexerIRCParseMatch_ParseUrls(t *testing.T) {
}
func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
t.Parallel()
type fields struct {
TorrentURL string
TorrentName string
@ -238,6 +240,7 @@ func TestIndexerIRCParseMatch_ParseTorrentName(t *testing.T) {
}
func TestIRCParserGazelleGames_Parse(t *testing.T) {
t.Parallel()
type args struct {
rls *Release
vars map[string]string
@ -316,6 +319,7 @@ func TestIRCParserGazelleGames_Parse(t *testing.T) {
}
func TestIRCParserOrpheus_Parse(t *testing.T) {
t.Parallel()
type args struct {
rls *Release
vars map[string]string