Skip to content

Commit bac289c

Browse files
committed
Fix tests
1 parent 9d557d8 commit bac289c

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ unit-tests:
2828
python3 -m venv env/; \
2929
source env/bin/activate; \
3030
pip3 install --upgrade pip; \
31-
pip3 install --no-cache-dir -r tests/python/requirements.txt; \
31+
pip3 install --no-cache-dir -r tests/python/unit/requirements.txt; \
3232
pip3 install --no-cache-dir -r code-env/python/spec/requirements.txt; \
3333
export PYTHONPATH="$(PYTHONPATH):$(PWD)/python-lib"; \
3434
export DICTIONARY_FOLDER_PATH="$(PWD)/resource/dictionaries"; \
@@ -44,7 +44,7 @@ integration-tests:
4444
python3 -m venv env/; \
4545
source env/bin/activate; \
4646
pip3 install --upgrade pip; \
47-
pip install --no-cache-dir -r tests/python/requirements.txt; \
47+
pip install --no-cache-dir -r tests/python/integration/requirements.txt; \
4848
pytest tests/python/integration --alluredir=tests/allure_report || true \
4949
deactivate; \
5050
)

tests/python/unit/requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pandas>=1.0,<1.1
2+
pytest==6.1.0

0 commit comments

Comments
 (0)