File tree Expand file tree Collapse file tree 5 files changed +27
-4
lines changed Expand file tree Collapse file tree 5 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1+ language : python
2+
3+ python :
4+ - 2.7
5+ - 3.4
6+ - 3.5
7+
8+ install :
9+ - sudo apt-get install iverilog
10+ - pip install pytest pytest-pythonpath
11+
12+ script :
13+ - python -m pytest .
Original file line number Diff line number Diff line change 1+ PYTHON =python3
2+ # PYTHON=python
3+
4+ .PHONY : all
5+ all : clean
6+
7+ .PHONY : test
8+ test :
9+ $(PYTHON ) -m pytest -vv
10+
111.PHONY : clean
212clean :
313 make clean -C ./pyverilog
414 make clean -C ./examples
515 make clean -C ./tests
6- rm -rf * .pyc __pycache__ * .out parsetab.py pyverilog.egg-info build dist
16+ rm -rf * .egg-info build dist * .pyc __pycache__ parsetab.py .cache tmp.v uut.vcd * .out * .png * .dot
717
818.PHONY : release
919release :
Original file line number Diff line number Diff line change 1+ [pytest]
2+ python_paths = ./
Original file line number Diff line number Diff line change 1010
1111.PHONY : clean
1212clean :
13- rm -rf * .pyc __pycache__ parsetab.py * .out .cache
13+ rm -rf * .pyc __pycache__ parsetab.py * .out .cache tmp.v uut.vcd * .png * .dot
1414 find . -maxdepth 1 -type d | grep " ./" | xargs -I {} make clean -C {}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments