Skip to content

Commit

Permalink
temp commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkoren21 committed Aug 7, 2024
1 parent e34bbae commit 8200db8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
pytest_target: [models, layers]
# pytest_target: [models, layers]
pytest_target: [layers]
name: test-${{ matrix.pytest_target }}
steps:
- name: Check out repository
Expand Down
2 changes: 2 additions & 0 deletions test/layers/activations/test_elu.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ def forward(self, x):
@pytest.mark.repeat(10)
@pytest.mark.parametrize('change_ordering', [False])
def test_layer_elu(change_ordering):
assert False
model = LayerELU()
model.eval()
input_np = np.random.uniform(0, 1, (1, 3, 224, 224))
Expand All @@ -45,6 +46,7 @@ def test_layer_elu(change_ordering):
@pytest.mark.repeat(10)
@pytest.mark.parametrize('change_ordering', [False])
def test_fp_elu(change_ordering):
assert False
model = FPELU()
model.eval()
input_np = np.random.uniform(0, 1, (1, 3, 224, 224))
Expand Down

0 comments on commit 8200db8

Please sign in to comment.