Add changes from sprint 1 and 2 to master
Add changes from Sprint 1 and 2 to master.
Merge request reports
Activity
added 4 commits
-
7082b24a...726c8e18 - 3 commits from branch
master
- 66c53e41 - Merged README.md
-
7082b24a...726c8e18 - 3 commits from branch
mentioned in commit 8ed17a9b
mentioned in commit 52d15f03
18 @pytest.fixture 19 def out_port2(): 20 return OutputPort(1, None) 21 22 @pytest.fixture 23 def dangling_sig(): 24 return Signal() 25 26 @pytest.fixture 27 def s_w_source(): 28 out_port = OutputPort(0, None) 29 return Signal(source=out_port) 30 31 @pytest.fixture 32 def sig_with_dest(): 33 inp_port = InputPort(0, None) 19 def out_port2(): 20 return OutputPort(1, None) 21 22 @pytest.fixture 23 def dangling_sig(): 24 return Signal() 25 26 @pytest.fixture 27 def s_w_source(): 28 out_port = OutputPort(0, None) 29 return Signal(source=out_port) 30 31 @pytest.fixture 32 def sig_with_dest(): 33 inp_port = InputPort(0, None) 34 return Signal(destination=out_port)
Please register or sign in to reply