Skip to content

Commit

Permalink
Merge pull request #1112 from MetPX/enable_blocked_tests
Browse files Browse the repository at this point in the history
Enable blocked tests
  • Loading branch information
petersilva authored Jun 21, 2024
2 parents 1589bfb + 40b4dee commit 038dcbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Don't cancel the entire matrix when one job fails
fail-fast: false
matrix:
which_test: [ static_flow, no_mirror, flakey_broker, dynamic_flow, restart_server ]
which_test: [ static_flow, no_mirror, flakey_broker, dynamic_flow, restart_server, partitioned_flow ]
osver: [ "ubuntu-20.04", "ubuntu-22.04" ]

runs-on: ${{ matrix.osver }}
Expand Down
2 changes: 1 addition & 1 deletion travis/flow_autoconfig.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pip3 install pyftpdlib paramiko net-tools
# The dependencies that are installed using apt are only available to system default Python versions (e.g. Python 3.8 on Ubuntu 20.04)
# If we are testing on a non-default Python version, we need to ensure these dependencies are still installed, so we use pip.
# See issue #407, #445.
for PKG in amqp appdirs dateparser watchdog netifaces humanize jsonpickle paho-mqtt psutil xattr rangehttpserver; do
for PKG in amqp appdirs dateparser flufl.lock humanize jsonpickle netifaces paho-mqtt psutil rangehttpserver watchdog xattr ; do
PKG_INSTALLED="`pip3 list | grep ${PKG}`"
if [ "$?" == "0" ] ; then
echo "$PKG is already installed"
Expand Down

0 comments on commit 038dcbf

Please sign in to comment.