Unverified Commit 9e3815a1 authored by Adrian Pino's avatar Adrian Pino Committed by GitHub
Browse files

Merge pull request #34 from OpenOperatorPlatform/feature/refactor-set-common-tests

Feature/refactor set common tests
parents 5d5a47e2 bff2fea0
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -32,8 +32,7 @@ Each contribution should be made in the appropriate directory:
- **Network Adapters**`src/network/clients/`

## Unit Tests Requirement
To merge a feature branch into `main`, the adapter **must include unit tests** under the `/tests` directory. Please use `/tests/edgecloud` for edgecloud, and `/tests/network` for the 5G cores)
Ensure that your unit tests cover the main functionalities of the adapter.
To merge a feature branch into `main`, the adapter **must pass the unit tests** under the `/tests` directory. Please use `/tests/edgecloud` for edgecloud, and `/tests/network` for the 5G cores)

## Steps to Contribute
1. **Fork the Repository** (if applicable).
+3 −0
Original line number Diff line number Diff line

class EdgeCloudPlatformError(Exception):
    pass
+2 −1
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@ import json
from typing import Optional

import requests
from src.edgecloud.clients.errors import EdgeCloudPlatformError
from pydantic import BaseModel

from src import logger
@@ -20,7 +21,7 @@ from src import logger
log = logger.get_logger(__name__)


class I2EdgeError(Exception):
class I2EdgeError(EdgeCloudPlatformError):
    pass


tests/edgecloud/test_aerOS.py

deleted100644 → 0
+0 −0

Empty file deleted.

+1 −0
Original line number Diff line number Diff line
# TODO
Loading