took the tracetools_read and tracetools_trace from upstream (rolling)

This commit is contained in:
Niklas Halle 2025-05-20 16:27:27 +02:00
parent e8637c9043
commit 1b96054945
25 changed files with 1555 additions and 438 deletions

View file

@ -12,12 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from ament_flake8.main import main
from ament_flake8.main import main_with_errors
import pytest
@pytest.mark.flake8
@pytest.mark.linter
def test_flake8():
rc = main(argv=[])
assert rc == 0, 'Found errors'
rc, errors = main_with_errors(argv=[])
assert rc == 0, \
'Found %d code style errors / warnings:\n' % len(errors) + \
'\n'.join(errors)