.gitignore 860 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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. pip-wheel-metadata/
  15. *.pyc
  16. *.pyo
  17. *.swo
  18. *.swp
  19. *.egg-info
  20. *.conf
  21. .coverage
  22. *~
  23. # Ignore files generated by run_ci_tests
  24. pep8.out
  25. pylint.out
  26. coverage.xml
  27. pagureenv-*
  28. worker.log
  29. _build/
  30. results/
  31. results_*/
  32. # Just a local folder I use for testing
  33. clones/
  34. # IdeaIDE
  35. .idea/
  36. # Ignore the git repos in unit tests
  37. tests/*.git
  38. # Don't track alembic.ini
  39. alembic.ini
  40. # Don't track the virtualenv we tell developers to use
  41. pagure_env/
  42. # Ignore the Vagrantfile
  43. Vagrantfile
  44. .dnf-cache
  45. *.retry
  46. .vagrant
  47. # Ignore generated dockerfile
  48. dev/containers/test_env
  49. # Tox virtualenvs
  50. .tox
  51. # Ignore pipenv
  52. Pipfile
  53. # A possible symlink for the testsuite
  54. /repospanner
  55. /repobridge
  56. /repohookrunner