.gitignore 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. # Default folder where the git repos are located
  2. repos/
  3. forks/
  4. tickets/
  5. docs/
  6. requests/
  7. releases/
  8. remotes/
  9. lcl/
  10. pagure_env/
  11. # Other python/editor specific files to ignore
  12. dist/
  13. build/
  14. *.pyc
  15. *.pyo
  16. *.swp
  17. *.egg-info
  18. *.conf
  19. .coverage
  20. # Ignore files generated by run_ci_tests
  21. pep8.out
  22. pylint.out
  23. coverage.xml
  24. pagureenv-*
  25. worker.log
  26. _build/
  27. results/
  28. results_*/
  29. # Just a local folder I use for testing
  30. clones/
  31. # IdeaIDE
  32. .idea/
  33. # Ignore the git repos in unit tests
  34. tests/*.git
  35. # Don't track alembic.ini
  36. alembic.ini
  37. # Don't track the virtualenv we tell developers to use
  38. pagure_env/
  39. # Ignore the Vagrantfile
  40. Vagrantfile
  41. .dnf-cache
  42. *.retry
  43. .vagrant
  44. # Ignore generated dockerfile
  45. dev/containers/test_env
  46. # Tox virtualenvs
  47. .tox
  48. # Ignore pipenv
  49. Pipfile
  50. # A possible symlink for the testsuite
  51. /repospanner
  52. /repobridge
  53. /repohookrunner