Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tener distribution unitaria #232

Merged

Conversation

carlosthe19916
Copy link
Member

No description provided.

@codecov
Copy link

codecov bot commented Apr 24, 2022

Codecov Report

Merging #232 (b4d4400) into master (07255d7) will not change coverage.
The diff coverage is 0.00%.

@@          Coverage Diff           @@
##           master    #232   +/-   ##
======================================
  Coverage    1.38%   1.38%           
======================================
  Files          55      54    -1     
  Lines         797     797           
  Branches      165     169    +4     
======================================
  Hits           11      11           
  Misses        785     785           
  Partials        1       1           
Flag Coverage Δ
unitests 1.38% <0.00%> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
src/main/webapp/src/App.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/Constants.ts 0.00% <0.00%> (ø)
src/main/webapp/src/Routes.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/api-client/resources/core.ts 0.00% <ø> (ø)
...webapp/src/pages/contribuyentes/contribuyentes.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/pages/profile/overview.tsx 0.00% <0.00%> (ø)
src/main/webapp/src/queries/currentUser.ts 0.00% <0.00%> (ø)
src/main/webapp/src/queries/whoami.ts 0.00% <0.00%> (ø)
...c/shared/components/layout/HeaderApp/HeaderApp.tsx 0.00% <ø> (ø)
...hared/components/layout/HeaderApp/UserDropdown.tsx 0.00% <0.00%> (ø)
... and 3 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 07255d7...b4d4400. Read the comment docs.

@project-openubl-preview-bot
Copy link
Contributor

🚀 Container image Preview ✨

The creation of the container image might take aproximately 10 minutes. Once it is available you can pull it using:

docker pull ghcr.io/carlosthe19916/searchpe/searchpe:singleDistribution            
  • To watch the current status of the container image creation visit Workflow runs
  • To see the list of packages created by the boot visit Packages

Docker compose
version: "3"
services:
  postgresql:
    image: postgres:13.1
    ports:
      - 5432:5432
    environment:
      POSTGRES_DB: searchpe_db
      POSTGRES_USER: db_username
      POSTGRES_PASSWORD: db_password
    healthcheck:
      test: [ "CMD-SHELL", "pg_isready -U db_username -d searchpe_db" ]
      interval: 10s
      timeout: 5s
      retries: 5

  searchpe:
    image: quay.io/projectopenubl/searchpe:early-access
    ports:
      - 8180:8080
    environment:
      QUARKUS_HTTP_PORT: 8080
      QUARKUS_DATASOURCE_USERNAME: db_username
      QUARKUS_DATASOURCE_PASSWORD: db_password
      QUARKUS_DATASOURCE_JDBC_URL: jdbc:postgresql://postgresql:5432/searchpe_db
    healthcheck:
      test: [ "CMD", "curl", "-f", "http://localhost:8080/q/health" ]
      interval: 10s
      timeout: 5s
      retries: 5
    depends_on:
      postgresql:
        condition: service_healthy

@carlosthe19916 carlosthe19916 merged commit b0ad96b into project-openubl:master Apr 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants