Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrei Neagu committed Mar 21, 2024
1 parent a648f43 commit c616915
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions scripts/ci/run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
#/bin/sh

# http://redsymbol.net/articles/unofficial-bash-strict-mode/
set -o errexit # abort on nonzero exitstatus
set -o nounset # abort on unbound variable
set -o pipefail # don't hide errors within pipes
IFS=$'\n\t'

make .venv
source .venv/bin/activate
make install-dev
Expand Down

0 comments on commit c616915

Please sign in to comment.