diff --git a/apps/cli/executables/datafetcher/test/Dockerfile b/apps/cli/executables/datafetcher/test/Dockerfile index 895c9740b14b469c096eff559c92bd0036f6159e..e0852f32b259989380006746c4022ee1ab144a58 100644 --- a/apps/cli/executables/datafetcher/test/Dockerfile +++ b/apps/cli/executables/datafetcher/test/Dockerfile @@ -15,7 +15,7 @@ FROM continuumio/miniconda3:latest COPY environment.yml . -ENV PATH $HOME/miniconda3/condabin/conda:$PATH +ENV PATH $HOME/miniconda3/bin/conda:$PATH # docker_build.sh should have copied environment.yml from data/; # it will be used in the command below diff --git a/apps/cli/executables/datafetcher/tox.ini b/apps/cli/executables/datafetcher/tox.ini deleted file mode 100644 index d79ea386ba0dab52544c11a5aab11da66c355ab3..0000000000000000000000000000000000000000 --- a/apps/cli/executables/datafetcher/tox.ini +++ /dev/null @@ -1,26 +0,0 @@ -# Using tox to test this app against different versions of python, see -# https://tox.readthedocs.io/en/latest/ - -[tox] -envlist = py27, py34, py35, py36, py37, py38 -skip_missing_interpreters = True - -[testenv] -passenv = * -deps = -r{toxinidir}/requirements.txt - -r{toxinidir}/test-requirements.txt -commands = python -V - env - {envpython} setup.py install - {envpython} setup.py test -basepython = py27: {env:TOXPYTHON:python2.7} - py34: {env:TOXPYTHON:python3.4} - py35: {env:TOXPYTHON:python3.5} - py36: {env:TOXPYTHON:python3.6} - py37: {env:TOXPYTHON:python3.7} - py38: {env:TOXPYTHON:python3.8} - -[pytest] -console_output_style = progress -log_cli = True - diff --git a/environment.yml b/environment.yml index 134998cb21caf6ac9702692f6aaa61286cebe041..e42e0d028dc8b175016cda74043e2cd13651f303 100644 --- a/environment.yml +++ b/environment.yml @@ -24,7 +24,7 @@ dependencies: - pysftp=0.2.9 - pytest=5.4 - python=3.8 - - requests>=2.23,<3.0 + - requests=2.23 - simplejson=3.17 - sqlalchemy=1.3 - tqdm=4.46