Skip to content

Commit

Permalink
add fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
bmosaicml committed Jan 25, 2024
1 parent d40dbbc commit 487814c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ reportUnusedCoroutine = "error"
# Pytest
[tool.pytest.ini_options]
# By default, do not run gpu, vision, docs, notebook, or daily tests
addopts = "--codeblocks --strict-markers -m 'not gpu and not vision and not doctest and not daily and not remote'"
# addopts = "--codeblocks --strict-markers -m 'not gpu and not vision and not doctest and not daily and not remote'"

markers = [
# !!!!!!!!!!!IMPORTANT!!!!!!!!!: when updating the markers, also make sure to update meta.yaml
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def tiny_gpt2_tokenizer_helper():
def tiny_llama_tokenizer_helper():
transformers = pytest.importorskip('transformers')

hf_tokenizer = transformers.AutoTokenizer.from_pretrained('huggyllama/llama-7b', use_fast=True)
hf_tokenizer = transformers.AutoTokenizer.from_pretrained('huggyllama/llama-7b', use_fast=False)
return hf_tokenizer


Expand Down

0 comments on commit 487814c

Please sign in to comment.