File: sus.rb

package info (click to toggle)
ruby-async-pool 0.11.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 256 kB
  • sloc: ruby: 874; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 272 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2022-2025, by Samuel Williams.

ENV["TRACES_BACKEND"] ||= "traces/backend/test"

def prepare_instrumentation!
	require "traces"
end

def before_tests(...)
	prepare_instrumentation!
	
	super
end