Skip to content

Commit

Permalink
Merge pull request #140 from ivdatahub/dependabot/pip/pytest-8.3.3
Browse files Browse the repository at this point in the history
chore(deps-dev): bump pytest from 8.3.2 to 8.3.3
  • Loading branch information
IvanildoBarauna authored Sep 20, 2024
2 parents b9cea6d + 84fb13e commit 27b3e82
Show file tree
Hide file tree
Showing 6 changed files with 605 additions and 582 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/CI-CD.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,12 @@ jobs:
if: github.actor != 'actions[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/checkout@v3

- name: Set up Python 3.9
uses: actions/setup-python@v2
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: '3.10'

- name: Poetry Setup
run: |
Expand All @@ -35,10 +33,10 @@ jobs:
coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml

environment:
name: tests
name: tests
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ git checkout -b fix/branchname

## 3.1 Code Standards

- Use Python 3.9.6 or later.
- Use Python 3.10 or later.
- Follow PEP 8 for code style.
- Include unit tests for any new functionality or bug fixes.
- Make sure all existing and new tests pass before submitting a Pull Request.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.10-slim

WORKDIR /app

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
![Project Status](https://img.shields.io/badge/status-done-brightgreen?style=for-the-badge&logo=github)
![License](https://img.shields.io/badge/license-MIT-blue?style=for-the-badge&logo=mit)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/ivdatahub/data-consumer-api?style=for-the-badge&logo=github)
![Python Version](https://img.shields.io/badge/python-3.9-blue?style=for-the-badge&logo=python)
![Python Version](https://img.shields.io/badge/python-3.10-blue?style=for-the-badge&logo=python)

![Black](https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge&logo=python)
![pylint](https://img.shields.io/badge/pylint-10.00-green?style=for-the-badge&logo=python)
Expand Down Expand Up @@ -88,7 +88,7 @@ In summary, this project offers a robust and efficient solution for collecting,

## Step by Step

Ensure Python 3.9 or higher is installed on your machine
Ensure Python 3.10 or higher is installed on your machine

- Clone the repository:

Expand Down
Loading

0 comments on commit 27b3e82

Please sign in to comment.