Skip to content

Commit ae3c9fd

Browse files
committed
added missing requirements, updated versions
1 parent 32ac501 commit ae3c9fd

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

requirements-test-backward.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
numpy==1.18.5
2-
astroid==2.5.3
32
pytest==7.1.2
43
pylint==2.7.4
54
invoke==1.4.0

requirements-test.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
numpy==1.22.4
2-
astroid==2.5.3
32
pytest==7.1.2
43
pylint==2.7.4
54
invoke==1.4.0

tasks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ def clean(context):
2626

2727
@invoke.task(clean)
2828
def build(context):
29-
context.run('pip install -r requirements.txt', echo=True, pty=True)
29+
context.run('pip install -r requirements-test.txt', echo=True, pty=True)
3030
# keep verbose to see warnings
3131
context.run(f'{sys.executable} -m pip -v install .', echo=True, pty=True)
3232

3333

3434
@invoke.task(build)
3535
def test(context):
36-
cmd = 'pytest -s --color no --disable-pytest-warnings --tb=native'
36+
cmd = 'pytest -s --disable-pytest-warnings --tb=native'
3737
context.run(cmd, echo=True, pty=True)
3838

3939

0 commit comments

Comments
 (0)