Unverified Commit 14b8ec7e authored by Stella Biderman's avatar Stella Biderman Committed by GitHub
Browse files

Merge pull request #309 from dirkgr/PytestUpdate

Fixes for using lm_eval as a library
parents 827e2d51 e9f8f654
...@@ -32,7 +32,7 @@ jobs: ...@@ -32,7 +32,7 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov pip install flake8 pytest pytest-cov
pip install -e . pip install -e .[dev]
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
......
...@@ -11,7 +11,7 @@ If you haven't already, go ahead and fork the main repo, clone it, create a bran ...@@ -11,7 +11,7 @@ If you haven't already, go ahead and fork the main repo, clone it, create a bran
git clone https://github.com/<YOUR-USERNAME>/lm-evaluation-harness.git git clone https://github.com/<YOUR-USERNAME>/lm-evaluation-harness.git
cd lm-evaluation-harness cd lm-evaluation-harness
git checkout -b <task-name> git checkout -b <task-name>
pip install -r requirements.txt pip install -e ".[dev]"
``` ```
## Creating Your Task File ## Creating Your Task File
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment