Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,18 @@ cd testingconferences.github.io
```

## Contributing Guidelines
The list of events is driven by files in the ```_data``` folder - if you have an update for those things, just change the ```current.yml``` and ```past.yml``` files and send a PR.
- The _order_ of the events listed in ```current.yml``` and ```past.yml``` dictates the _order_ displayed, please make sure to properly insert events.
The list of events is driven by files in the ```_data``` folder - if you have an update for those things, just change the relevant data file (currently ```current.yml```, ```past.yml```, or ```closed.yml```) and send a PR.
- The _order_ of the events listed in the data files dictates the _order_ displayed, please make sure to properly insert events.
- If possible, spell out the conference name and add the abbreviation. Otherwise just use the abbreviation:
- Example: Workshop on Performance and Reliability (WOPR)
- If the conference name has a colon (:), place the entire name in quotes. Otherwise this can cause build errors.
- Example: ```"test:fest 2099"``` or ```"IBCU: Workshop on Testing 2099"```
- Include the year
- Sometimes workshops use a version instead of a year
- Example: Workshop on Performance and Reliability (WOPR) 24
- Closed conferences can use ```closed.yml``` and include:
- ```first_date``` for the first known event date
- ```last_date``` for the last known event date
- Don't include the @ symbol for the twitter handle. If there is no twitter option, leave it blank
- Optionally include a status such as:
- CFP is open / closed (CFP == Call for Proposal)
Expand Down
6 changes: 6 additions & 0 deletions _data/closed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: GreaTest Quality
location: Zurich, Switzerland
first_date: June 2, 2023
last_date: May 23, 2025
url: https://www.greatestquality.ch?utm_source=testingconferences
status: Annual conference discontinued after 2025 and replaced by smaller community meetups.
1 change: 1 addition & 0 deletions _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<ul>
<a href="/" {% if page.url == '/' %}class='active'{% endif %}>Upcoming</a>
<a href="/past" {% if page.url == '/past/' %}class='active'{% endif %}>Past</a>
<a href="/closed" {% if page.url == '/closed/' %}class='active'{% endif %}>Closed</a>
</ul>
</div>
<div class="sub-nav">
Expand Down
21 changes: 21 additions & 0 deletions closed.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
layout: default
permalink: /closed/
title: Closed Software Testing Conferences
---

<p>Conferences and workshops that have shut down or ended their annual conference series.</p>

<ul class="post-list">
{% for conference in site.data.closed %}
<li>
<h2><a href="{{ conference.url }}">{{ conference.name }}</a></h2>
<p>
Location: {{ conference.location }}<br>
First held: {{ conference.first_date }}<br>
Last held: {{ conference.last_date }}
{% if conference.status != nil %}<br>Status: {{ conference.status }}{% endif %}
</p>
</li>
{% endfor %}
</ul>
Loading