Skip to content

Commit

Permalink
Add init file and make github workflow exit on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
gvdongen committed Aug 27, 2024
1 parent 314edf1 commit f4e3a63
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .tools/run_python_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ function python_mypi_lint() {
deactivate
}

pushd $PROJECT_ROOT/templates/python && python_mypi_lint && popd || exit
pushd $PROJECT_ROOT/tutorials/tour-of-restate-python && python_mypi_lint && popd || exit
cd $PROJECT_ROOT/templates/python && python_mypi_lint || exit
cd $PROJECT_ROOT/tutorials/tour-of-restate-python && python_mypi_lint || exit
8 changes: 8 additions & 0 deletions tutorials/tour-of-restate-python/tour/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright (c) 2024 - Restate Software, Inc., Restate GmbH
#
# This file is part of the Restate examples,
# which is released under the MIT license.
#
# You can find a copy of the license in the file LICENSE
# in the root directory of this repository or package or at
# https://github.com/restatedev/examples/

0 comments on commit f4e3a63

Please sign in to comment.