未验证 提交 524ba6f6 编写于 作者: C Christian Clauss 提交者: GitHub

Travis CI: Discover undefined names in Python code (#306)

* Travis CI: Discover undefined names in Python code

Blocked by #304 and #305

* Add linter directive # noqa: F821

* Flake8: Add E722 do not use bare 'except'

* Flake8: Remove bare 'except' and open #309

#309
上级 1bb52b4b
os: linux
dist: focal
language: python language: python
sudo: required
dist: trusty
services: services:
- docker - docker
os:
- linux
env: env:
- JOB=check_style - JOB=check_style
install: pip install flake8
script: script:
- flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- docker run -it -v $PWD:/work -w /work paddlepaddle/paddle:latest-dev ./.teamcity/build.sh ${JOB} - docker run -it -v $PWD:/work -w /work paddlepaddle/paddle:latest-dev ./.teamcity/build.sh ${JOB}
notifications: notifications:
email: email:
......
...@@ -538,7 +538,7 @@ game = Connect4Game() ...@@ -538,7 +538,7 @@ game = Connect4Game()
# AlphaZero players # AlphaZero players
agent = SimpleAgent(game) agent = SimpleAgent(game)
buffer = io.BytesIO(decoded) buffer = io.BytesIO(decoded) # noqa: F821 'decoded' added in gen_submission.py
agent.load_checkpoint(buffer) agent.load_checkpoint(buffer)
mcts_args = dotdict({'numMCTSSims': 800, 'cpuct': 1.0}) mcts_args = dotdict({'numMCTSSims': 800, 'cpuct': 1.0})
mcts = MCTS(game, agent, mcts_args) mcts = MCTS(game, agent, mcts_args)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册