Skip to content

Commit

Permalink
ci: do not fail PR if code coverage lowered
Browse files Browse the repository at this point in the history
We don't need such check in this SDK. Also, it can be false positive when moving from Java to Kotlin
  • Loading branch information
wzieba committed Nov 6, 2023
1 parent 271491a commit cc43b9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
github_checks:
annotations: false

coverage:
status:
project: off
patch: off
2 changes: 1 addition & 1 deletion example/src/main/java/com/example/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ protected void onCreate(Bundle savedInstanceState) {
ParselyTracker.sharedInstance("example.com", 30, this);

// Set debugging to true so we don't actually send things to Parse.ly
ParselyTracker.sharedInstance().setDebug(true);
// ParselyTracker.sharedInstance().setDebug(true);

final TextView queueView = (TextView) findViewById(R.id.queue_size);
queueView.setText(String.format("Queued events: %d", ParselyTracker.sharedInstance().queueSize()));
Expand Down

0 comments on commit cc43b9f

Please sign in to comment.