Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,17 +215,21 @@ def get_workers(settings):
cpw(
name="pablogsal-arch-x86_64",
tags=['linux', 'unix', 'arch', 'amd64', 'x86-64'],
# Problematic ISP causes test_urllib2net random failures
exclude_test_resources=['urlfetch', 'network'],
),
cpw(
name="pablogsal-macos-m1",
tags=['macOS', 'unix', 'arm', 'arm64'],
parallel_tests=4,
# Problematic ISP causes test_urllib2net random failures
exclude_test_resources=['urlfetch', 'network'],
),
cpw(
name="pablogsal-rasp",
tags=['linux', 'unix', 'raspbian', 'debian', 'arm'],
parallel_tests=1, # Reduced from 2: ASAN builds use 2-10x more memory
# Problematic ISP causes issues connecting to testpython.net
# Problematic ISP causes test_urllib2net random failures
exclude_test_resources=['urlfetch', 'network'],
),
cpw(
Expand Down