Skip to content

Commit bd3a342

Browse files
committed
[DOC] Add parentheses
1 parent 814edc4 commit bd3a342

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ test-light:
6464
@pytest -vx -rs --cov=backpack . -k "not test_memory_leak"
6565

6666
test-no-gpu:
67-
@pytest -k "not cuda and test_memory_leak" -vx -rs --run-optional-tests=montecarlo --cov=backpack .
68-
@pytest -k "not cuda and not test_memory_leak" -vx -rs --run-optional-tests=montecarlo --cov=backpack .
67+
@pytest -k "(not cuda) and test_memory_leak" -vx -rs --run-optional-tests=montecarlo --cov=backpack .
68+
@pytest -k "(not cuda) and (not test_memory_leak)" -vx -rs --run-optional-tests=montecarlo --cov=backpack .
6969

7070
test-light-no-gpu:
71-
@pytest -k "not cuda and test_memory_leak" -vx -rs --cov=backpack .
72-
@pytest -k "not cuda and not test_memory_leak" -vx -rs --cov=backpack .
71+
@pytest -k "(not cuda) and test_memory_leak" -vx -rs --cov=backpack .
72+
@pytest -k "(not cuda) and (not test_memory_leak)" -vx -rs --cov=backpack .
7373

7474
###
7575
# Linter and autoformatter

0 commit comments

Comments
 (0)