Skip to content
Snippets Groups Projects
Commit 1dca19e3 authored by mohanty's avatar mohanty
Browse files

Merge branch 'spm/fix-benchmarking-profiling-tox-configs' into 'master'

Fix path references in the benchmarking and profiling tox configurrations

See merge request flatland/flatland!115
parents 78710e56 14807453
No related branches found
No related tags found
No related merge requests found
...@@ -85,9 +85,10 @@ whitelist_externals = sh ...@@ -85,9 +85,10 @@ whitelist_externals = sh
deps = deps =
-r{toxinidir}/requirements_dev.txt -r{toxinidir}/requirements_dev.txt
-r{toxinidir}/requirements_continuous_integration.txt -r{toxinidir}/requirements_continuous_integration.txt
changedir = {toxinidir}
commands = commands =
python --version python --version
python benchmarks/benchmark_all_examples.py python {toxinidir}/benchmarks/benchmark_all_examples.py
[testenv:profiling] [testenv:profiling]
; use python3.6 because of incompatibility under Windows of the pycairo installed through conda for py37 ; use python3.6 because of incompatibility under Windows of the pycairo installed through conda for py37
...@@ -110,8 +111,9 @@ conda_channels : ...@@ -110,8 +111,9 @@ conda_channels :
deps = deps =
-r{toxinidir}/requirements_dev.txt -r{toxinidir}/requirements_dev.txt
-r{toxinidir}/requirements_continuous_integration.txt -r{toxinidir}/requirements_continuous_integration.txt
changedir = {toxinidir}
commands = commands =
python benchmarks/profile_all_examples.py python {toxinidir}/benchmarks/profile_all_examples.py
[testenv:examples] [testenv:examples]
; TODO should examples be run with py36 and py37?? ; TODO should examples be run with py36 and py37??
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment