Skip to content

Commit

Permalink
build: disable additional lint rule in TS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Sep 29, 2024
1 parent 41af122 commit 2c4e5d8
Show file tree
Hide file tree
Showing 28 changed files with 34 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,6 @@ import at5d = require( './index' );
at5d( x, 0 ); // $ExpectError
at5d( x, 0, 0 ); // $ExpectError
at5d( x, 0, 0, 0 ); // $ExpectError
at5d( x, 0, 0, 0, 0, ); // $ExpectError
at5d( x, 0, 0, 0, 0 ); // $ExpectError
at5d( x, 0, 0, 0, 0, 0, 0 ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ interface CuAnyBy {
* var x = [ 0, 0, 0, 1, 0 ];
* var y = [ false, null, false, null, false, null, true, null, true, null ];
*
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );,
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );
* // returns [ false, null, false, null, false, null, true, null, true, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down Expand Up @@ -161,7 +161,7 @@ interface CuAnyBy {
* var x = [ 0, 0, 0, 1, 0 ];
* var y = [ false, null, false, null, false, null, true, null, true, null ];
*
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );,
* var arr = cuanyBy.assign( x, y, 2, 0, isPositive );
* // returns [ false, null, false, null, false, null, true, null, true, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ interface CuEveryBy {
* var x = [ 1, 1, 0, 0, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );,
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );
* // returns [ true, null, true, null, false, null, false, null, false, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down Expand Up @@ -158,7 +158,7 @@ interface CuEveryBy {
* var x = [ 1, 1, 0, 0, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );,
* var arr = cueveryBy.assign( x, y, 2, 0, isPositive );
* // returns [ true, null, true, null, false, null, false, null, false, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface CuEvery {
* var x = [ true, true, true, false, false ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cuevery.assign( x, y, 2, 0 );,
* var arr = cuevery.assign( x, y, 2, 0 );
* // returns [ true, null, true, null, true, null, false, null, false, null ];
*/
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, y: U, stride: number, offset: number ): U;

Check warning on line 59 in lib/node_modules/@stdlib/array/base/cuevery/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ interface CunoneByRight {
* var x = [ 1, 1, 0, 0, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cunoneByRight.assign( x, y, 2, 0, fcn );,
* var arr = cunoneByRight.assign( x, y, 2, 0, fcn );
* // returns [ true, null, true, null, true, null, false, null, false, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down Expand Up @@ -158,7 +158,7 @@ interface CunoneByRight {
* var x = [ 0, 0, 0, 1, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
* // returns [ true, null, false, null, false, null, false, null, false, null ]
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ interface CuNoneBy {
* var x = [ 0, 0, 0, 1, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
* // returns [ true, null, true, null, true, null, false, null, false, null ]
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down Expand Up @@ -158,7 +158,7 @@ interface CuNoneBy {
* var x = [ 0, 0, 0, 1, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );,
* var arr = cunoneBy.assign( x, y, 2, 0, isPositive );
* // returns [ true, null, true, null, true, null, false, null, false, null ]
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ interface cunone {
* var x = [ false, false, false, true, false ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cunone.assign( x, y, 2, 0 );,
* var arr = cunone.assign( x, y, 2, 0 );
* // returns [ true, null, true, null, true, null, false, null, false, null ];
*/
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, y: U, stride: number, offset: number ): U;

Check warning on line 59 in lib/node_modules/@stdlib/array/base/cunone/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ interface CusomeByRight {
* var x = [ 1, 1, 0, 0, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );,
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );
* // returns [ false, null, false, null, false, null, false, null, true, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down Expand Up @@ -162,7 +162,7 @@ interface CusomeByRight {
* var x = [ 1, 1, 0, 0, 0 ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );,
* var arr = cusomeByRight.assign( x, 2, y, 2, 0, fcn );
* // returns [ false, null, false, null, false, null, false, null, true, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ interface CuSomeBy {
* var x = [ 0, 0, 0, 1, 1,];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cusomeBy.assign( x, 2, y, 2, 0, isPositive );,
* var arr = cusomeBy.assign( x, 2, y, 2, 0, isPositive );
* // returns [ false, null, false, null, false, null, false, null, true, null ];
*/
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, n: number, out: Array<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Array<U | boolean>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ interface cusome {
* var x = [ false, false, false, true, true ];
* var y = [ false, null, false, null, false, null, false, null, false, null ];
*
* var arr = cusome.assign( x, 2, y, 2, 0 );,
* var arr = cusome.assign( x, 2, y, 2, 0 );
* // returns [ false, null, false, null, false, null, false, null, true, null ];
*/
assign<T, U extends Collection<T> | AccessorArrayLike<T>>( x: Collection | AccessorArrayLike<any>, n: number, y: U, stride: number, offset: number ): U;

Check warning on line 61 in lib/node_modules/@stdlib/array/base/cusome/docs/types/index.d.ts

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected any. Specify a different type
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ import mskput = require( './index' );
mskput(); // $ExpectError
mskput( [] ); // $ExpectError
mskput( [], [] ); // $ExpectError
mskput( [], [], [], ); // $ExpectError
mskput( [], [], [] ); // $ExpectError
mskput( [], [], [], 'strict', {} ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ import place = require( './index' );
place(); // $ExpectError
place( [] ); // $ExpectError
place( [], [] ); // $ExpectError
place( [], [], [], ); // $ExpectError
place( [], [], [] ); // $ExpectError
place( [], [], [], 'strict', {} ); // $ExpectError
}
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/array/base/put/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ import put = require( './index' );
put(); // $ExpectError
put( [] ); // $ExpectError
put( [], [] ); // $ExpectError
put( [], [], [], ); // $ExpectError
put( [], [], [] ); // $ExpectError
put( [], [], [], 'throw', {} ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ import expandDimensions = require( './index' );
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

expandDimensions(); // $ExpectError
expandDimensions( x, ); // $ExpectError
expandDimensions( x ); // $ExpectError
expandDimensions( x, 1, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ import prependSingletonDimensions = require( './index' );
const x = array( [ [ 1, 2 ], [ 3, 4 ] ] );

prependSingletonDimensions(); // $ExpectError
prependSingletonDimensions( x, ); // $ExpectError
prependSingletonDimensions( x ); // $ExpectError
prependSingletonDimensions( x, 3, [ 1, 2, 3 ], [ 2, 3 ] ); // $ExpectError
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '0.2', ); // $ExpectError
iterator( '0.2' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '0.2', ); // $ExpectError
iterator( '0.2' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/random/iter/t/docs/types/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import iterator = require( './index' );

// The compiler throws an error if the function is provided an invalid input argument...
{
iterator( '2.0', ); // $ExpectError
iterator( '2.0' ); // $ExpectError
iterator( true ); // $ExpectError
iterator( { 'iter': 'beep' } ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import iterPeriodicSinc = require( './index' );

// The function returns an iterator...
{
iterPeriodicSinc( 7, ); // $ExpectType Iterator
iterPeriodicSinc( 7 ); // $ExpectType Iterator
iterPeriodicSinc( 8, {} ); // $ExpectType Iterator
iterPeriodicSinc( 9, { 'iter': 10 } ); // $ExpectType Iterator
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function arrayLike(): ArrayLike<number> {
const x = [ 1, 2, 3, 4, 5, 6 ];

strided2object(); // $ExpectError
strided2object( x.length, ); // $ExpectError
strided2object( x.length ); // $ExpectError
strided2object( x.length, x ); // $ExpectError
strided2object( x.length, x, 1 ); // $ExpectError
strided2object( x.length, x, 1, 0, {} ); // $ExpectError
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function mapper( value: number ): number {
* Reducing function.
*
* @param acc - accumulated value
* @param v - array element
* @param value - array element
* @returns result
*/
function reducer( acc: number, value: number ): number {
Expand Down Expand Up @@ -171,7 +171,7 @@ function reducer( acc: number, value: number ): number {
mapReduceRight(); // $ExpectError
mapReduceRight( arr1 ); // $ExpectError
mapReduceRight( arr1, 0 ); // $ExpectError
mapReduceRight( arr1, 0, mapper, ); // $ExpectError
mapReduceRight( arr1, 0, mapper ); // $ExpectError
mapReduceRight( arr1, 0, mapper, reducer, {}, 3 ); // $ExpectError

const arr2 = array( [ 1, 2, 3 ] );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ function reducer( acc: number, value: number ): number {
mapReduce(); // $ExpectError
mapReduce( arr1 ); // $ExpectError
mapReduce( arr1, 0 ); // $ExpectError
mapReduce( arr1, 0, mapper, ); // $ExpectError
mapReduce( arr1, 0, mapper ); // $ExpectError
mapReduce( arr1, 0, mapper, reducer, {}, 3 ); // $ExpectError

const arr2 = array( [ 1, 2, 3 ] );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ function arrayLike(): ArrayLike<number> {
const x = [ 1, 2, 3, 4, 5, 6 ];

strided2object(); // $ExpectError
strided2object( x.length, ); // $ExpectError
strided2object( x.length ); // $ExpectError
strided2object( x.length, x ); // $ExpectError
strided2object( x.length, x, 1 ); // $ExpectError
strided2object( x.length, x, 1, 0, {} ); // $ExpectError
Expand Down

2 comments on commit 2c4e5d8

@Planeshifter
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kgryte Commit message got mixed up here; will fix for changelog via our tooling.

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/at5d $\color{green}120/120$
$\color{green}+100.00\%$
$\color{green}9/9$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}120/120$
$\color{green}+100.00\%$
array/base/cuany-by-right $\color{green}298/298$
$\color{green}+100.00\%$
$\color{green}16/16$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}298/298$
$\color{green}+100.00\%$
array/base/cuany-by $\color{green}301/301$
$\color{green}+100.00\%$
$\color{green}17/17$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}301/301$
$\color{green}+100.00\%$
array/base/cuevery-by $\color{green}297/297$
$\color{green}+100.00\%$
$\color{green}21/21$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}297/297$
$\color{green}+100.00\%$
array/base/cuevery $\color{green}398/398$
$\color{green}+100.00\%$
$\color{green}32/32$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}398/398$
$\color{green}+100.00\%$
array/base/cunone-by-right $\color{green}298/298$
$\color{green}+100.00\%$
$\color{green}16/16$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}298/298$
$\color{green}+100.00\%$
array/base/cunone-by $\color{green}289/289$
$\color{green}+100.00\%$
$\color{green}16/16$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}289/289$
$\color{green}+100.00\%$
array/base/cunone $\color{green}398/398$
$\color{green}+100.00\%$
$\color{green}32/32$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}398/398$
$\color{green}+100.00\%$
array/base/cusome-by-right $\color{green}313/313$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}313/313$
$\color{green}+100.00\%$
array/base/cusome-by $\color{green}302/302$
$\color{green}+100.00\%$
$\color{green}18/18$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}302/302$
$\color{green}+100.00\%$
array/base/cusome $\color{green}416/416$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}416/416$
$\color{green}+100.00\%$
array/base/mskput $\color{green}357/357$
$\color{green}+100.00\%$
$\color{green}39/39$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}357/357$
$\color{green}+100.00\%$
array/base/place $\color{green}357/357$
$\color{green}+100.00\%$
$\color{green}39/39$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}357/357$
$\color{green}+100.00\%$
array/base/put $\color{green}367/367$
$\color{green}+100.00\%$
$\color{green}28/28$
$\color{green}+100.00\%$
$\color{green}5/5$
$\color{green}+100.00\%$
$\color{green}367/367$
$\color{green}+100.00\%$
array/from-iterator $\color{green}189/189$
$\color{green}+100.00\%$
$\color{green}36/36$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}189/189$
$\color{green}+100.00\%$
blas/base/dsyr $\color{green}393/393$
$\color{green}+100.00\%$
$\color{green}47/47$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}393/393$
$\color{green}+100.00\%$
ndarray/base/expand-dimensions $\color{green}211/211$
$\color{green}+100.00\%$
$\color{green}24/24$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}211/211$
$\color{green}+100.00\%$
ndarray/base/prepend-singleton-dimensions $\color{green}167/167$
$\color{green}+100.00\%$
$\color{green}7/7$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}167/167$
$\color{green}+100.00\%$
random/array/tools $\color{green}105/105$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}105/105$
$\color{green}+100.00\%$
random/iter/bernoulli $\color{green}296/296$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}296/296$
$\color{green}+100.00\%$
random/iter/chi $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/chisquare $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/exponential $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/geometric $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/poisson $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/rayleigh $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
random/iter/t $\color{green}295/295$
$\color{green}+100.00\%$
$\color{green}33/33$
$\color{green}+100.00\%$
$\color{green}10/10$
$\color{green}+100.00\%$
$\color{green}295/295$
$\color{green}+100.00\%$
simulate/iter/periodic-sinc $\color{green}381/381$
$\color{green}+100.00\%$
$\color{green}53/53$
$\color{green}+100.00\%$
$\color{green}6/6$
$\color{green}+100.00\%$
$\color{green}381/381$
$\color{green}+100.00\%$
strided/base/strided2object $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$
utils/map-reduce-right $\color{green}413/413$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}413/413$
$\color{green}+100.00\%$
utils/map-reduce $\color{green}413/413$
$\color{green}+100.00\%$
$\color{green}20/20$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}413/413$
$\color{green}+100.00\%$
wasm/base/strided2object $\color{green}126/126$
$\color{green}+100.00\%$
$\color{green}4/4$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}126/126$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.