Skip to content

Commit e53f0b4

Browse files
committed
capitalization issue
1 parent 8630dc7 commit e53f0b4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
# Configure pip to use PyTorch extra-index-url for CPU
22
mkdir -p $HOME/.config/pip
3-
echo "[global]\nextra-index-url = https://download.pytorch.org/whl/cpu" > $HOME/.config/pip/pip.conf
4-
5-
6-
echo "Platform: $(python -c 'import platform; print(platform.machine())')"
3+
echo "[global]
4+
extra-index-url = https://download.pytorch.org/whl/cpu" > $HOME/.config/pip/pip.conf

tests/test_neighbors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ def test_per_batch_box(device, strategy, n_batches, use_forward):
669669
@pytest.mark.parametrize("dtype", [torch.float64])
670670
@pytest.mark.parametrize("loop", [True, False])
671671
@pytest.mark.parametrize("include_transpose", [True, False])
672-
@pytest.mark.skipIf(
672+
@pytest.mark.skipif(
673673
platform.machine() == "aarch64",
674674
reason="Test unstable on Linux aarch64 architectures",
675675
)

0 commit comments

Comments
 (0)