Skip to content
Snippets Groups Projects
Commit 63ec4f8e authored by Kaushik Kulkarni's avatar Kaushik Kulkarni
Browse files

fixup! fixup! remove dependency on pytato

parent 55528050
No related branches found
No related tags found
No related merge requests found
......@@ -122,7 +122,12 @@ jobs:
# downstream projects might not be using PytatoArrayContext, force
# pytato as a requirement so that using PytatoArrayContext in the
# downstream package's tests doesn't result in a failure.
echo "git+https://github.com/inducer/pytato.git#egg=pytato" >> requirements.txt
if grep -q "pytato" requirements.txt
then
echo "$DOWNSTREAM_PROJECT already has pytato as a requiement";
else
echo "git+https://github.com/inducer/pytato.git#egg=pytato" >> requirements.txt
fi
# Avoid slow or complicated tests in downstream projects
export PYTEST_ADDOPTS="-k 'not (slowtest or octave or mpi)'"
......
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