Skip to content

Commit

Permalink
Make sure we don't overlap ourselves!
Browse files Browse the repository at this point in the history
  • Loading branch information
rowleya committed Sep 25, 2023
1 parent e67eb7b commit 756a945
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test_whole_board/test_borders.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,11 @@


BOARDS = [(bx, by)
for bx in range(20)
for by in range(20)]
for bx in range(0, 20, 2)
for by in range(0, 20, 2)]
BOARDS += [(bx, by)
for bx in range(1, 20, 2)
for by in range(1, 20, 2)]
SPALLOC_URL = "https://spinnaker.cs.man.ac.uk/spalloc"
SPALLOC_USERNAME = "jenkins"
SPALLOC_PASSWORD = os.getenv("SPALLOC_PASSWORD")
Expand Down

0 comments on commit 756a945

Please sign in to comment.