Skip to content

Instantly share code, notes, and snippets.

@barseghyanartur
Last active April 30, 2026 12:09
Show Gist options
  • Select an option

  • Save barseghyanartur/2e36de0a8b64198ed98e748a0a7b7f15 to your computer and use it in GitHub Desktop.

Select an option

Save barseghyanartur/2e36de0a8b64198ed98e748a0a7b7f15 to your computer and use it in GitHub Desktop.
blog: Hide ``*.py,cover`` files from IDE

Hide *.py,cover files from IDE

Date: 2026-04-02 14:00
category:Tech
tags:python, vscode, pycharm
summary:Clean up your workspace by hiding those pesky *.py,cover files from your IDE. Whether you're using VS Code or PyCharm, this quick setting change keeps your file tree focused on your actual source code by filtering out coverage reports. Just a few clicks in your editor's "Excluded" or "Ignored" file settings, and those clutter-causing files disappear from view while remaining safe on your disk.

VSCode

Settings -> Text Editor -> Files -> Add Pattern: Add **/*.py,cover

PyCharm

Editor -> File Types -> Ignored Files and Folders : Add *.py,cover

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment