Skip to content

Commit

Permalink
try different method to exclude experimental from cov test
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol-Srivastava committed Oct 19, 2023
1 parent 29303ed commit e619b65
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
- name: Unit and coverage tests
run: |
pytest tests/menelaus --cov=menelaus/ --cov-report term
coverage report -m --fail-under=100
coverage report -m --fail-under=100 --omit=menelaus/experimental
2 changes: 1 addition & 1 deletion menelaus/experimental/transform.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import numpy as np
import tensorflow as tf
from tensorflow.keras.layers import Flatten, Dense
from tensorflow.keras.layers import Flatten, Dense, InputLayer
from toolz import curry
from transformers import AutoConfig, AutoTokenizer, TFAutoModel
from typing import Optional, Dict, Union, List
Expand Down

0 comments on commit e619b65

Please sign in to comment.