Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • opendata/dcat-catalog-check
1 result
Select Git revision
Show changes
Commits on Source (2)
...@@ -22,7 +22,7 @@ ruff: ...@@ -22,7 +22,7 @@ ruff:
before_script: before_script:
# Install libgdal-dev # Install libgdal-dev
- apt-get update - apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev - apt-get install -y libgdal-dev &&
# Install pipx # Install pipx
- python3 -m pip install --user pipx - python3 -m pip install --user pipx
- python3 -m pipx ensurepath - python3 -m pipx ensurepath
...@@ -41,7 +41,7 @@ test: ...@@ -41,7 +41,7 @@ test:
before_script: before_script:
# Install libgdal-dev # Install libgdal-dev
- apt-get update - apt-get update
- apt-get install -y software-properties-common apt-transport-https gnupg libgdal-dev - apt-get install -y libgdal-dev &&
# Install pipx # Install pipx
- python3 -m pip install --user pipx - python3 -m pip install --user pipx
- python3 -m pipx ensurepath - python3 -m pipx ensurepath
......
...@@ -5,16 +5,24 @@ All notable changes to this project will be documented in this file. ...@@ -5,16 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [1.1.0] - 2024-01-09
### Added ### Added
- Unit tests for URI replacements and resource clearing. - **Unit Tests**:
- URI replacements and resource clearing functionality.
- Support for multiple formats: GeoTIFF, Atom, DOCX, ODT, XLSX, JPEG, PDF, TXT, TIF.
- Frictionless Data Resource validation.
- **Report Generation**:
- Added columns for **HTTP status** and **error message** in the generated reports.
- Implemented **filters** for table columns, allowing users to refine data views.
### Changed ### Changed
- Updated coverage configuration to manage test file inclusion/exclusion. - **Coverage Configuration**:
- Test files are now omitted from coverage reports to focus on application code metrics. - Updated coverage settings to better manage test file inclusion/exclusion.
- Test files are now excluded from coverage reports to focus on measuring application code quality.
## [1.0.0] - 2024-12-20 ## [1.0.0] - 2024-12-20
......