From 099a1a35ccd4d76d0b6960a0943f98041c1fdfee Mon Sep 17 00:00:00 2001 From: linlin Date: Sun, 4 Oct 2020 19:15:17 +0200 Subject: [PATCH] New translations .appveyor.yml (Chinese Simplified) --- lang/zh/.appveyor.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lang/zh/.appveyor.yml diff --git a/lang/zh/.appveyor.yml b/lang/zh/.appveyor.yml new file mode 100644 index 0000000..d63af3a --- /dev/null +++ b/lang/zh/.appveyor.yml @@ -0,0 +1,29 @@ +--- +environment: + matrix: + - + PYTHON: "C:\\Python36" + - + PYTHON: "C:\\Python36-x64" + - + PYTHON: "C:\\Python37" + - + PYTHON: "C:\\Python37-x64" + - + PYTHON: "C:\\Python38" + - + PYTHON: "C:\\Python38-x64" +#skip_commits: +#files: +#- "*.yml" +#- "*.rst" +#- "LICENSE" +install: + - "%PYTHON%\\python.exe -m pip install -U pip" + - "%PYTHON%\\python.exe -m pip install wheel" + - "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - "%PYTHON%\\python.exe -m pip install -U pytest" +build: false +test_script: + - "%PYTHON%\\python.exe setup.py bdist_wheel" + - "%PYTHON%\\python.exe -m pytest -v gklearn/tests/ --ignore=gklearn/tests/test_median_preimage_generator.py"