Skip to content

Commit

Permalink
fix: alembic
Browse files Browse the repository at this point in the history
  • Loading branch information
polomarcus committed Jun 21, 2024
1 parent 2ce1ac6 commit d393696
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions alembic/versions/4ccd746ee291_add_20_30.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('keywords', sa.Column('number_of_keywords_20', sa.Integer(), nullable=True))
op.add_column('keywords', sa.Column('number_of_keywords_30', sa.Integer(), nullable=True))
op.add_column('keywords', sa.Column('number_of_keywords_40', sa.Integer(), nullable=True))
op.alter_column('keywords', sa.Column('number_of_keywords_20', sa.Integer(), nullable=True))
op.alter_column('keywords', sa.Column('number_of_keywords_30', sa.Integer(), nullable=True))
op.alter_column('keywords', sa.Column('number_of_keywords_40', sa.Integer(), nullable=True))
# ### end Alembic commands ###


Expand Down

1 comment on commit d393696

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage

Coverage Report
FileStmtsMissCoverMissing
postgres
   insert_data.py44784%36–38, 57–59, 64
   insert_existing_data_example.py19384%25–27
postgres/schemas
   models.py1461093%120–127, 139–140, 198–199, 213–214
quotaclimat/data_ingestion
   scrap_sitemap.py1341787%27–28, 33–34, 66–71, 95–97, 138–140, 202, 223–228
quotaclimat/data_ingestion/ingest_db
   ingest_sitemap_in_db.py553733%21–42, 45–58, 62–73
quotaclimat/data_ingestion/scrap_html
   scrap_description_article.py36392%19–20, 32
quotaclimat/data_processing/mediatree
   api_import.py20312638%43–47, 52–67, 71–74, 80, 83–122, 128–143, 147–148, 161–173, 177–183, 196–207, 210–214, 220, 255–256, 260, 264–298, 301–303
   channel_program.py1365162%30–32, 43–45, 59, 95, 104, 142–183
   config.py15287%7, 16
   detect_keywords.py213896%169–172, 216, 271–273
   update_pg_keywords.py533828%14–99, 122–123, 148–177, 183
   utils.py642266%26–50, 53, 62, 78–79
quotaclimat/utils
   healthcheck_config.py291452%22–24, 27–38
   logger.py241154%22–24, 28–37
   sentry.py10280%21–22
TOTAL120735171% 

Tests Skipped Failures Errors Time
81 0 💤 0 ❌ 0 🔥 59.493s ⏱️

Please sign in to comment.