Skip to content

Commit

Permalink
FIX pre-commit and build status images
Browse files Browse the repository at this point in the history
  • Loading branch information
ecino committed Feb 8, 2024
1 parent 192d2cd commit fa12537
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@

<!-- /!\ Non OCA Context : Set here the badge of your runbot / runboat instance. -->
[![Pre-commit Status](https://github.com/CompassionCH/test-repo/actions/workflows/pre-commit.yml/badge.svg?branch=14.0)](https://github.com/CompassionCH/test-repo/actions/workflows/pre-commit.yml?query=branch%3A14.0)
[![Build Status](https://github.com/CompassionCH/test-repo/actions/workflows/test.yml/badge.svg?branch=14.0)](https://github.com/CompassionCH/test-repo/actions/workflows/test.yml?query=branch%3A14.0)
[![codecov](https://codecov.io/gh/CompassionCH/test-repo/branch/14.0/graph/badge.svg)](https://codecov.io/gh/CompassionCH/test-repo)
[![Pre-commit Status](https://github.com/CompassionCH/compassion-accounting/actions/workflows/pre-commit.yml/badge.svg?branch=14.0)](https://github.com/CompassionCH/compassion-accounting/actions/workflows/pre-commit.yml?query=branch%3A14.0)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=CompassionCH_compassion-accounting&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=CompassionCH_compassion-accounting)
<!-- /!\ Non OCA Context : Set here the badge of your translation instance. -->

<!-- /!\ do not modify above this line -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version='1.0' encoding='utf-8' ?>
<!-- oca-hooks:disable=xml-duplicate-record-id -->
<!-- pylint:disable=duplicate-xml-record-id -->
<odoo>
<data>
<record id="compassion_se_chart_template" model="account.chart.template">
Expand Down
7 changes: 4 additions & 3 deletions recurring_contract/tests/test_account_move.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,11 @@ def test_build_invoice_data(self):
)
self.assertEqual(result.get(self.invoice_name).get("date"), invoice_date)
self.assertEqual(result.get(self.invoice_name).get("payment_reference"), ref)
self.assertEqual(result.get(self.invoice_name).get("payment_mode_id"),
pay_mode_id)
self.assertEqual(
result.get(self.invoice_name).get("payment_mode_id"), pay_mode_id
)
self.assertEqual(
result.get(self.invoice_name).get("invoice_payment_term_id"),
payment_term_id
payment_term_id,
)
self.assertEqual(result.get(self.invoice_name).get("partner_id"), partner_id)

0 comments on commit fa12537

Please sign in to comment.