Skip to content

Commit

Permalink
fix: ringsize = filelength for perf tests (#592)
Browse files Browse the repository at this point in the history
  • Loading branch information
bassmang authored Oct 16, 2023
1 parent c9f692d commit 7905a11
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/codeql/codeql-config.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
name: "CodeQL config"

# Specify the paths to ignore
paths-ignore:
- bindings/python/docs/
- ext_libs/
- 'bindings/python/docs/'
- 'ext_libs/'

# Specify the minimum disk space required
min-disk-free: 2048 # Adjust as necessary. This value is in MB.
1 change: 1 addition & 0 deletions bindings/cs/rl.net.cli/PerfTestStepProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ public PerfTestStepProvider(string filePath)
}
}
this.NumLines = Contexts.Count;
this.RingSize = this.NumLines;
}

public IEnumerator<IStepContext<float>> GetEnumerator()
Expand Down

0 comments on commit 7905a11

Please sign in to comment.