-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add simons refined samples #24
Conversation
does not include the samples which rely on external test data
Hi Simon! Could you please also add your split to To set up the workflows, you need to enable GitHub Actions in your repo and may replace the NAMES=(chien jenny wenhao niklas hanhu ratna simon)
for name in "${NAMES[@]}"; do
cp data/raw/*"$name"*py data/clean
done
flake8 data/clean/*.py --select=E9,F63,F7,F82 --show-source --statistics
python script/parse.py
for name in "${NAMES[@]}"; do
for file in data/processed/*"$name"*wo_doc.py; do
if ! pytest "$file"; then
echo "Pytest failed on $file, stopping..."
exit 1
fi
done
for file in data/processed/*"$name"*w_doc.py; do
if ! pytest --doctest-modules "$file"; then
echo "Pytest failed on $file, stopping..."
exit 1
fi
done
done Cheers |
Should I add my finalized samples to raw or the initial ones I received? |
Finalized ones :) |
Hey, all test conclude successfully now. Should be ready to merge. |
Hi @Veluchs, could you please resolve your |
Hi @terryyz, Only the remaining names need to be added to run.sh |
does not include the samples which rely on external test data.