Skip to content
Snippets Groups Projects

WIP: B-ASIC version 1.0.0 hotfix

Closed Jacob Wahlman requested to merge develop into master

Hotfix for imports that were accidentally included.

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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)
  • Arvid Westerlund
    Arvid Westerlund @arvwe160 started a thread on commit c4b4fdae
  • 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)
  • closed

  • Please register or sign in to reply
    Loading