12c31c779c
The current scenario table has some saved content from previous executions which were submitted and merged by mistake. This patch removes the file content and adds it to .gitignore to prevent this happening again. The file is not removed due to a doc8 test failure if it does not exist. Change-Id: Ieea1f45c00609b0b0b72379d2b53ad1006f15bb6
77 lines
1.1 KiB
Plaintext
77 lines
1.1 KiB
Plaintext
# Compiled source #
|
|
###################
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.so
|
|
*.pyc
|
|
build/
|
|
dist/
|
|
doc/build/
|
|
deploy-guide/build/
|
|
|
|
# Packages #
|
|
############
|
|
# it's better to unpack these files and commit the raw source
|
|
# git has its own built in compression methods
|
|
*.7z
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# Logs and databases #
|
|
######################
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
logs/*
|
|
|
|
# OS generated files #
|
|
######################
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
.idea
|
|
.tox
|
|
*.sublime*
|
|
*.egg-info
|
|
Icon?
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
.eggs
|
|
.coverage
|
|
*.retry
|
|
|
|
# User driven backup files #
|
|
############################
|
|
*.bak
|
|
*.swp
|
|
|
|
# Generated by pbr while building docs
|
|
######################################
|
|
AUTHORS
|
|
ChangeLog
|
|
|
|
# Files created by releasenotes build
|
|
releasenotes/build
|
|
|
|
# Vagrant artifacts
|
|
.vagrant
|
|
|
|
# run playbooks tests
|
|
playbooks/root-include-playbook.yml
|
|
playbooks/include-playbook.yml*
|
|
playbooks/logs
|
|
|
|
# This file is generated by doc/source/scenario_table_gen.py
|
|
# So we should ignore any contributor changes to it.
|
|
doc/source/user/aio/scenario-table-gen.html
|