fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
21 lines
420 B
Python
21 lines
420 B
Python
import pytest
|
|
|
|
import numpy as np
|
|
|
|
from . import util
|
|
|
|
|
|
@pytest.mark.slow
|
|
class TestF2Cmap(util.F2PyTest):
|
|
sources = [
|
|
util.getpath("tests", "src", "f2cmap", "isoFortranEnvMap.f90"),
|
|
util.getpath("tests", "src", "f2cmap", ".f2py_f2cmap")
|
|
]
|
|
|
|
# gh-15095
|
|
def test_gh15095(self):
|
|
inp = np.ones(3)
|
|
out = self.module.func1(inp)
|
|
exp_out = 3
|
|
assert out == exp_out
|