Skip to content

Commit

Permalink
[TMP] Workflow test
Browse files Browse the repository at this point in the history
  • Loading branch information
josep-tecnativa committed Feb 5, 2025
1 parent f5d6587 commit a1523d0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
- run: git config --global user.email CI@GITHUB
# Run all tests, which includes linters
# Non concurrent first (in parallel)
- run: poetry run invoke test
- run: poetry run invoke test -vv
env:
SELECTED_ODOO_VERSIONS: ${{ matrix.odoo-version }}
TRAEFIK_VERSION: ${{ matrix.traefik_version }}
Expand Down
2 changes: 2 additions & 0 deletions tests/test_doodba_qa.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
from pathlib import Path

import pytest
from copier import run_copy
from python_on_whales import DockerClient

from .conftest import DBVER_PER_ODOO


@pytest.mark.skip(reason="TEMP SKIPPING")
def test_doodba_qa(tmp_path: Path, supported_odoo_version: float):
"""Test Doodba QA works fine with a scaffolding copy."""
run_copy(
Expand Down
2 changes: 2 additions & 0 deletions tests/test_migrations.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from glob import glob
from pathlib import Path

import pytest
from copier import run_update
from plumbum import local
from plumbum.cmd import git, invoke
Expand All @@ -15,6 +16,7 @@
# - copier-answers before 5.2.0 are not compatible with latest copier versions (null answers are not supported for some question types).


@pytest.mark.skip(reason="TEMP SKIPPING")
def test_transtion_to_copier(
tmp_path: Path, cloned_template: Path, supported_odoo_version: float
):
Expand Down
1 change: 1 addition & 0 deletions tests/test_routing.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from .conftest import DBVER_PER_ODOO


@pytest.mark.skip(reason="TEMP SKIPPING")
@pytest.mark.parametrize("environment", ("test", "prod"))
def test_multiple_domains(
cloned_template: Path,
Expand Down
4 changes: 4 additions & 0 deletions tests/test_tasks_downstream.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ def _tests_ran(stdout, odoo_version, addon_name):


@pytest.mark.sequential
@pytest.mark.skip(reason="TEMP SKIPPING")
def test_resetdb(
cloned_template: Path,
supported_odoo_version: float,
Expand Down Expand Up @@ -178,6 +179,7 @@ def test_resetdb(


@pytest.mark.sequential
@pytest.mark.skip(reason="TEMP SKIPPING")
def test_start(
cloned_template: Path,
supported_odoo_version: float,
Expand Down Expand Up @@ -230,6 +232,7 @@ def test_start(


@pytest.mark.sequential
@pytest.mark.skip(reason="TEMP SKIPPING")
def test_install_test(
cloned_template: Path,
supported_odoo_version: float,
Expand Down Expand Up @@ -307,6 +310,7 @@ def test_install_test(


@pytest.mark.sequential
@pytest.mark.skip(reason="TEMP SKIPPING")
@pytest.mark.skip_for_prereleases
def test_test_tasks(
cloned_template: Path,
Expand Down

0 comments on commit a1523d0

Please sign in to comment.