Skip to content

Commit c699955

Browse files
committed
Skip tests again
Signed-off-by: Claudio Spiess <[email protected]>
1 parent d0cf2b0 commit c699955

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

tests/test_optimizer.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
import pytest
55
from datasets import Dataset, DatasetDict
66

7-
from pdl.optimize.config_parser import OptimizationConfig
87
from examples.optimizer.fever_evaluator import FEVEREvaluator
98
from examples.optimizer.gsm8k_evaluator import Gsm8kEvaluator
109
from examples.optimizer.mbpp_dataset import MBPPDataset
1110
from examples.optimizer.mbpp_evaluator import MBPPEvaluator
11+
from pdl.optimize.config_parser import OptimizationConfig
1212
from pdl.optimize.pdl_optimizer import PDLOptimizer
1313

1414

@@ -751,41 +751,41 @@ def run_optimizer_mbpp(pattern, num_demonstrations=0):
751751
pprint(result)
752752

753753

754-
#@pytest.mark.skip("API access not available in CI")
754+
@pytest.mark.skip("API access not available in CI")
755755
def test_gsm8k_zeroshot_cot():
756756
run_optimizer_gsm8k("cot")
757757

758758

759-
#@pytest.mark.skip("API access not available in CI")
759+
@pytest.mark.skip("API access not available in CI")
760760
def test_gsm8k_fiveshot_react():
761761
run_optimizer_gsm8k("react", num_demonstrations=5)
762762

763763

764-
#@pytest.mark.skip("API access not available in CI")
764+
@pytest.mark.skip("API access not available in CI")
765765
def test_gsm8k_fiveshot_rewoo():
766766
run_optimizer_gsm8k("rewoo", num_demonstrations=5)
767767

768768

769-
#@pytest.mark.skip("API access not available in CI")
769+
@pytest.mark.skip("API access not available in CI")
770770
def test_fever_zeroshot_cot():
771771
run_optimizer_fever("cot")
772772

773773

774-
#@pytest.mark.skip("API access not available in CI")
774+
@pytest.mark.skip("API access not available in CI")
775775
def test_fever_fiveshot_react():
776776
run_optimizer_fever("react", num_demonstrations=5)
777777

778778

779-
#@pytest.mark.skip("API access not available in CI")
779+
@pytest.mark.skip("API access not available in CI")
780780
def test_fever_zeroshot_rewoo():
781781
run_optimizer_fever("rewoo")
782782

783783

784-
#@pytest.mark.skip("API access not available in CI")
784+
@pytest.mark.skip("API access not available in CI")
785785
def test_mbpp_zeroshot_cot():
786786
run_optimizer_mbpp("cot")
787787

788788

789-
#@pytest.mark.skip("API access not available in CI")
789+
@pytest.mark.skip("API access not available in CI")
790790
def test_mbpp_zeroshot_react():
791791
run_optimizer_mbpp("react")

0 commit comments

Comments
 (0)