Skip to content

Commit

Permalink
let workflows fail correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
pogopaule committed Mar 8, 2024
1 parent b791b68 commit efd38e3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@

scripts = {
create_readme.exec = ''
pushd src > /dev/null
python create_readme.py
pushd src > /dev/null &&
python create_readme.py &&
popd > /dev/null
'';
create_map_data.exec = ''
pushd src > /dev/null
python create_map_data.py
pushd src > /dev/null &&
python create_map_data.py &&
popd > /dev/null
'';
update_reviews.exec = ''
pushd src > /dev/null
python update_reviews.py
pushd src > /dev/null &&
python update_reviews.py &&
popd > /dev/null
'';
run_tests.exec = "pytest src/test_all.py";
Expand Down

0 comments on commit efd38e3

Please sign in to comment.