Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: madgik/mipdb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.4.7
Choose a base ref
...
head repository: madgik/mipdb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 6 commits
  • 23 files changed
  • 3 contributors

Commits on Jun 10, 2024

  1. Added a new field on system table for datasets that stores the path o…

    …f the csv that contains the specific dataset.
    KFilippopolitis committed Jun 10, 2024
    Copy the full SHA
    db54908 View commit details

Commits on Jun 13, 2024

  1. Refactor csv_path to use a relative path for enhanced security.

    - Updated csv_path to a relative path to improve security.
    - Added checks and messages to inform if the specified folder for import or validation is empty or does not exist.
    KFilippopolitis committed Jun 13, 2024
    Copy the full SHA
    76bc74e View commit details

Commits on Jun 26, 2024

  1. Refactor (#47)

    * Added SQLite that will contain all tables except the primary_data.
    * Completely removed the actions table.
    * Added tests for no db validation
    * Moved the database specific modules in a folder named databases.
    * Session on the sqlite autocommits.
    KFilippopolitis authored Jun 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a808d34 View commit details
  2. New versio

    KFilippopolitis authored Jun 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    2ffc048 View commit details

Commits on Jul 9, 2024

  1. Change:

     - Removed DATA_PATH environment variable
     - Updated CSV path handling:
      - For file copies, we now load the absolute path.
      - For sockets, the path is left empty.
    Kostas Filippopolitis committed Jul 9, 2024
    Copy the full SHA
    82c1f9b View commit details
  2. new version

    Kostas Filippopolitis committed Jul 9, 2024
    Copy the full SHA
    f70050d View commit details
14 changes: 6 additions & 8 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -33,12 +33,10 @@ jobs:
run: poetry install --no-interaction

- name: Run tests
run: |
poetry run coverage run -m pytest
poetry run coverage xml
run: poetry run pytest --cov=mipdb --cov-report=html

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v1.0.5
with:
fail_ci_if_error: true
verbose: true
- name: Upload coverage to Codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run: |
bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
Loading