File tree Expand file tree Collapse file tree 5 files changed +11
-23
lines changed Expand file tree Collapse file tree 5 files changed +11
-23
lines changed Original file line number Diff line number Diff line change @@ -10,4 +10,4 @@ install:
1010 - pip install jinja2 pytest pytest-pythonpath
1111
1212script :
13- - python -m pytest .
13+ - python -m pytest tests
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ all: clean
66
77.PHONY : test
88test :
9- $(PYTHON ) -m pytest -vv
9+ $(PYTHON ) -m pytest -vv tests
1010
1111.PHONY : clean
1212clean :
Original file line number Diff line number Diff line change @@ -10,13 +10,9 @@ cd Pyverilog
1010python setup.py install
1111pip install pytest pytest-pythonpath
1212mv pyverilog pyverilog.old
13- cd examples
14- make PYTHON=python
15- make clean
16- cd ..
17- cd tests
18- make test PYTHON=python
19- cd ..
13+ make -C examples PYTHON=python
14+ make clean -C examples
15+ make test -C tests PYTHON=python
2016mv pyverilog.old pyverilog
2117cd ..
2218deactivate
Original file line number Diff line number Diff line change @@ -10,13 +10,9 @@ cd Pyverilog
1010python3 setup.py install
1111pip install pytest pytest-pythonpath
1212mv pyverilog pyverilog.old
13- cd examples
14- make
15- make clean
16- cd ..
17- cd tests
18- make test
19- cd ..
13+ make -C examples
14+ make clean -C examples
15+ make test -C tests
2016mv pyverilog.old pyverilog
2117cd ..
2218deactivate
Original file line number Diff line number Diff line change @@ -10,13 +10,9 @@ cd Pyverilog
1010python3 setup.py install
1111pip install pytest pytest-pythonpath
1212mv pyverilog pyverilog.old
13- cd examples
14- make
15- make clean
16- cd ..
17- cd tests
18- make test
19- cd ..
13+ make -C examples
14+ make clean -C examples
15+ make test -C tests
2016mv pyverilog.old pyverilog
2117cd ..
2218deactivate
You can’t perform that action at this time.
0 commit comments