File tree Expand file tree Collapse file tree 6 files changed +10
-4
lines changed Expand file tree Collapse file tree 6 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 11# !/usr/bin/make
22
33check :
4- pycodestyle openflow
5- pylint -s n openflow
4+ pycodestyle openflow examples
5+ pylint -s n openflow examples
66 git diff --check --cached
77 pytest test
88
Original file line number Diff line number Diff line change 1+ """Example about default values."""
2+
13from openflow .configure import ConfigureTools
24
35cfg = ConfigureTools ()
Original file line number Diff line number Diff line change 1+ """Example about to specify a file."""
2+
13from openflow .configure import ConfigureTools
24
35cfg = ConfigureTools ('../openflow.yml' )
Original file line number Diff line number Diff line change 1+ """Example about to use the different methods."""
2+
13from openflow .configure import ConfigureTools
24
35cfg = ConfigureTools ()
Original file line number Diff line number Diff line change 2222"""
2323
2424
25- import os
2625from yaml import safe_load , dump
2726
2827
Original file line number Diff line number Diff line change 3737 'Topic :: Utilities' ,
3838 'Topic :: Software Development :: Build Tools' ,
3939 "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)"
40- ]
40+ ],
41+ install_requires = ['pyyaml' ]
4142)
You can’t perform that action at this time.
0 commit comments