Apply our standard set of rules from our cockpit projects, and fix some minor fallout: ``` test/check-application:7:1: I001 [*] Import block is un-sorted or un-formatted test/check-application:9:119: E501 Line too long (122 > 118 characters) ``` Run ruff in CI to ensure we don't break it.
16 lines
466 B
Bash
Executable file
16 lines
466 B
Bash
Executable file
#! /bin/sh
|
|
set -eu
|
|
|
|
# This is the expected entry point for Cockpit CI; will be called without
|
|
# arguments but with an appropriate $TEST_OS, and optionally $TEST_SCENARIO
|
|
|
|
TEST_SCENARIO="${TEST_SCENARIO:-}"
|
|
[ "${TEST_SCENARIO}" = "${TEST_SCENARIO##firefox}" ] || export TEST_BROWSER=firefox
|
|
export RUN_TESTS_OPTIONS=--track-naughties
|
|
|
|
# linters are off by default for production builds, but we want to run them in CI
|
|
export LINT=1
|
|
|
|
make check
|
|
|
|
ruff check test/check*
|