Skip to content

Commit 1b516a6

Browse files
Massimiliano Pippimasci
Massimiliano Pippi
authored andcommitted
fix url
1 parent 97d191b commit 1b516a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/test_core.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
# a commercial license, send an email to [email protected].
1515
import os
1616
import platform
17-
1817
import pytest
1918
import simplejson as json
2019

@@ -107,11 +106,12 @@ def test_core_updateindex_invalid_url(run_command):
107106

108107

109108
@pytest.mark.skipif(
110-
platform.system() in ("Windows", "Darwin"), reason="core fails to install properly",
109+
platform.system() == "Windows",
110+
reason="core fails with fatal error: bits/c++config.h: No such file or directory",
111111
)
112112
def test_core_install_esp32(run_command, data_dir):
113113
# update index
114-
url = "https://arduino.esp8266.com/stable/package_esp8266com_index.json"
114+
url = "https://dl.espressif.com/dl/package_esp32_index.json"
115115
assert run_command("core update-index --additional-urls={}".format(url))
116116
# install 3rd-party core
117117
assert run_command("core install esp32:esp32 --additional-urls={}".format(url))

0 commit comments

Comments
 (0)